@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");

/* ============================================
   RINASCENTE — Corporate Design System
   復活する。再生する。そして、拡がっていく。
   ============================================ */

:root {
  /* Brand Colors */
  --black:       #080808;
  --charcoal:    #1a1a1a;
  --dark-gray:   #2e2e2e;
  --mid-gray:    #666660;
  --light-gray:  #b8b8b0;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --gold:        #c8a96e;
  --gold-light:  #e8d5aa;
  --gold-deep:   #9e7e45;

  /* Semantic Aliases */
  --bg-dark:     var(--black);
  --bg-light:    #faf7f2;
  --surface:     var(--white);
  --text-on-dark: #f0ebe0;
  --text-on-light: var(--charcoal);
  --accent:      var(--gold);
  --line-dark:   rgba(255,255,255,0.12);
  --line-light:  rgba(0,0,0,0.10);
  --line-gold:   rgba(200,169,110,0.35);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-base:    "DM Sans", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-ja:      "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;

  /* Spacing */
  --container:   1200px;
  --sp-xs:       6px;
  --sp-sm:       12px;
  --sp-md:       24px;
  --sp-lg:       48px;
  --sp-xl:       80px;
  --sp-2xl:      128px;

  /* Radius */
  --r-sm:  4px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 999px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* scroll-behavior: smooth はスクロール性能に影響するため無効化 */
html { scroll-behavior: auto; overflow-x: hidden; }
html, body { min-height: 100%; }
body { overflow-x: hidden; }

body {
  font-family: var(--font-base);
  color: var(--text-on-light);
  background: var(--bg-light);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

br.pc-br,
br[class*="pc-br"] { display: inline; }
br.sp-lead-br { display: none; }

@media (max-width: 640px) {
  br.pc-br,
  br[class*="pc-br"] { display: none !important; }
  br.sp-lead-br { display: inline; }
}

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-style: italic;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-style: italic;
}

.heading-1 {
  font-family: var(--font-base);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.heading-2 {
  font-family: var(--font-base);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.heading-3 {
  font-family: var(--font-base);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.body-lg { font-size: 1.05rem; line-height: 1.75; }
.body-sm { font-size: 0.88rem; line-height: 1.65; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
}

.section { padding: var(--sp-2xl) 0; }
.section-sm { padding: var(--sp-xl) 0; }

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: background 0.4s ease, border-color 0.4s ease;
}
body.menu-open .site-header {
  background: transparent !important;
  border-bottom-color: transparent !important;
  z-index: 100000;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: 100%;
}

/* ── Site switcher tokens (shared CSS handles layout) ── */
:root {
  --ss-fg: rgba(255,255,255,0.5);
  --ss-fg-hover: rgba(255,255,255,0.85);
  --ss-border: rgba(255,255,255,0.15);
  --ss-border-hover: rgba(255,255,255,0.35);
  --ss-active: var(--gold);
  --ss-active-bg: rgba(200,169,110,0.1);
  --ss-active-border: rgba(200,169,110,0.3);
  --ss-accent: rgba(255,255,255,0.8);
  --ss-accent-bg: rgba(255,255,255,0.06);
  --ss-accent-border: rgba(255,255,255,0.2);
}

.header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.header-logo__img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.header-logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.62);
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: color 0.25s cubic-bezier(.5,.01,.15,1),
              border-color 0.25s cubic-bezier(.5,.01,.15,1),
              background 0.25s cubic-bezier(.5,.01,.15,1),
              opacity 0.25s cubic-bezier(.5,.01,.15,1),
              filter 0.25s cubic-bezier(.5,.01,.15,1);
  white-space: nowrap;
}

/* When hovering nav, dim non-hovered items */
.header-nav:hover .nav-item:not(:hover) {
  opacity: 0.45;
  filter: blur(0.08rem);
}

.nav-item:hover,
.nav-item.active {
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  opacity: 1;
  filter: blur(0);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--r-full);
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.25s cubic-bezier(.5,.01,.15,1);
  border: 1px solid var(--gold);
  transform-style: preserve-3d;
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px) translateZ(4px);
  box-shadow: 0 6px 20px rgba(200,169,110,0.35);
}

/* ============================================
   MOBILE FULLSCREEN NAV (independent of header)
   ============================================ */

.mobile-nav {
  display: none;
}

/* ============================================
   SP VIDEO PANEL (mobile hero video)
   ============================================ */

.sp-video-panel {
  display: none;
}
.sp-video-panel__video {
  position: relative;
  cursor: pointer;
}
.sp-video-section {
  display: none;
}
.sp-video-section .sp-video-panel {
  display: block;
}

/* ============================================
   FORM STEPS & CONFIRM TABLE
   ============================================ */

.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.form-step.active {
  opacity: 1;
}
.form-step.done {
  opacity: 0.6;
}
.form-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.form-step.active .form-step__num {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.form-step.done .form-step__num {
  background: var(--gold-deep);
  color: white;
  border-color: var(--gold-deep);
}
.form-step__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.form-step__line {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 0 12px;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
}
.confirm-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.confirm-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  padding: 14px 16px 14px 0;
  vertical-align: top;
  width: 140px;
  white-space: nowrap;
}
.confirm-table td {
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 14px 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
    padding: 0;
    white-space: normal;
  }
  .confirm-table th {
    padding-top: 12px;
    padding-bottom: 2px;
    font-size: 0.72rem;
  }
  .confirm-table td {
    padding-bottom: 12px;
    font-size: 0.88rem;
  }
  .confirm-table tr {
    display: block;
  }
  .form-step__line {
    width: 24px;
    margin: 0 6px;
  }
  .form-actions:not(.form-actions--two) {
    display: flex;
    justify-content: center;
  }
  #formStepConfirm [style*="display:flex"] {
    flex-direction: column;
  }
  #formStepConfirm .btn {
    width: 100%;
  }
}

/* SP Video Play Button */
.sp-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sp-video-play__ring {
  position: absolute;
  animation: spPlaySpin 8s linear infinite;
}
@keyframes spPlaySpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.sp-video-play__icon {
  position: relative;
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(200,169,110,0.4));
  transition: opacity 0.3s;
}
.sp-video-panel__video:hover .sp-video-play__icon {
  opacity: 1;
}

/* External product site links in nav */
.nav-external-divider {
  display: none;
}
.nav-external {
  display: none;
}

/* Mobile menu button — animated hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: border-color 0.35s, background 0.35s;
}
.menu-toggle:hover {
  border-color: rgba(200,169,110,0.4);
  background: rgba(255,255,255,0.04);
}
.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              opacity 0.3s,
              width 0.3s cubic-bezier(0.22,1,0.36,1),
              background 0.3s;
}
.menu-toggle .bar:nth-child(1) { top: 16px; }
.menu-toggle .bar:nth-child(2) { top: 22px; }
.menu-toggle .bar:nth-child(3) { top: 28px; }

/* Active state — X morph */
.menu-toggle.is-active {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
}
.menu-toggle.is-active .bar {
  background: var(--gold);
}
.menu-toggle.is-active .bar:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
  width: 0;
  transform: translateX(-50%) translateX(10px);
}
.menu-toggle.is-active .bar:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(.5,.01,.15,1);
  border: 1px solid transparent;
  white-space: nowrap;
  transform-style: preserve-3d;
  will-change: transform;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px) translateZ(6px);
  box-shadow: 0 10px 28px rgba(200,169,110,0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark, #f0ebe0);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px) translateZ(4px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.25);
}
.btn-outline-dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px) translateZ(4px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-3px) translateZ(6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

.btn-lg { min-height: 56px; padding: 14px 36px; font-size: 0.92rem; }
.btn-sm { min-height: 36px; padding: 7px 18px; font-size: 0.8rem; }

/* ============================================
   BADGES / TAGS
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-gold { background: rgba(200,169,110,0.15); color: var(--gold); border: 1px solid rgba(200,169,110,0.35); }
.badge-dark { background: var(--charcoal); color: rgba(255,255,255,0.75); }
.badge-light { background: rgba(0,0,0,0.06); color: var(--mid-gray); border: 1px solid rgba(0,0,0,0.1); }
.badge-blue { background: rgba(0,104,183,0.1); color: #0068b7; border: 1px solid rgba(0,104,183,0.2); }
.badge-teal { background: rgba(0,95,115,0.1); color: #005f73; border: 1px solid rgba(0,95,115,0.2); }

/* ============================================
   GOLD DIVIDER
   ============================================ */

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
}

.gold-line-center { margin-inline: auto; }

/* ============================================
   HERO DARK
   ============================================ */

.hero-dark {
  position: relative;
  min-height: 100svh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(200,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-overline-line {
  width: 32px; height: 1px; background: var(--gold);
}
.hero-overline-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 32px;
}

.hero-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-body {
  max-width: 58ch;
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollIndFade 1.2s cubic-bezier(.5,.01,.15,1) 2.5s both;
}
.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent);
  animation: scrollLine 2s cubic-bezier(.5,.01,.15,1) 2.8s infinite;
}
@keyframes scrollIndFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* Big background wordmark */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header .label {
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-base);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-on-light);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.section-header.light h2 { color: var(--white); }
.section-header.light .label { color: var(--gold); }
.section-header.light p { color: rgba(255,255,255,0.6); }

.section-header p {
  max-width: 58ch;
  color: var(--mid-gray);
  font-size: 1rem;
}

.section-header .identity-philosophy-copy {
  max-width: none;
}

/* ============================================
   CARDS
   ============================================ */

/* Dark card */
.card-dark {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 0.28s cubic-bezier(.5,.01,.15,1),
              transform 0.28s cubic-bezier(.5,.01,.15,1),
              box-shadow 0.28s cubic-bezier(.5,.01,.15,1);
  transform-style: preserve-3d;
}
.card-dark:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-5px) translateZ(4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

/* Light card */
.card-light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.28s cubic-bezier(.5,.01,.15,1),
              transform 0.28s cubic-bezier(.5,.01,.15,1);
  transform-style: preserve-3d;
}
.card-light:hover {
  box-shadow: 0 16px 44px rgba(0,0,0,0.12);
  transform: translateY(-5px) translateZ(4px);
}

/* Press card */
.press-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  transition: opacity 0.28s cubic-bezier(.5,.01,.15,1),
              transform 0.28s cubic-bezier(.5,.01,.15,1);
}
.press-card:hover { opacity: 0.72; transform: translateX(4px); }
.press-card:last-child { border-bottom: none; }

.press-date {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
  padding-top: 3px;
}
.press-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-on-light);
  line-height: 1.45;
  margin-bottom: 6px;
}
.press-tag {
  font-size: 0.7rem;
}

/* Press archive */
.press-featured-wrap {
  margin-bottom: 64px;
}

.press-featured-label {
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: block;
}

.press-featured {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.2vw, 42px);
  background:
    radial-gradient(circle at top right, rgba(200, 169, 110, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(26, 42, 58, 0.035), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.9));
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.28s cubic-bezier(.5, .01, .15, 1),
              transform 0.28s cubic-bezier(.5, .01, .15, 1);
}

.press-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 46%);
  pointer-events: none;
}

.press-featured:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.press-featured__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  column-gap: clamp(24px, 3vw, 42px);
  row-gap: 0;
  align-items: start;
  max-width: none;
}

.press-featured__eyebrow {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.press-featured__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.press-featured__meta,
.press-list-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.press-featured__meta {
  grid-column: 1;
  align-items: center;
  margin-bottom: 14px;
}

.press-featured__date {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.press-featured__title {
  grid-column: 1;
  max-width: 13.5em;
  font-size: clamp(1.55rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.press-featured__excerpt {
  grid-column: 1;
  max-width: none;
  font-size: 0.96rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

.press-featured__footer {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 18px;
  min-height: 100%;
  margin-top: 0;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.press-featured__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.press-featured__info-item {
  min-width: 0;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.press-featured__info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.press-featured__footer::before {
  content: "FEATURED";
  display: block;
  margin-bottom: 4px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 120, 71, 0.85);
}

.press-featured__footer > * {
  position: relative;
  z-index: 1;
}

.press-featured__info-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.press-featured__info-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--charcoal);
}

.press-featured__cta {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.press-featured:hover .press-featured__cta {
  transform: translateX(2px);
  background: rgba(31, 31, 31, 0.96);
  border-color: rgba(31, 31, 31, 0.96);
  color: var(--white);
}

.press-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: var(--white);
  color: var(--mid-gray);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.press-list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.press-list-item:first-child {
  border-top: 1px solid var(--line-light);
}

.press-list-item:hover {
  opacity: 0.7;
}

.press-list-date {
  font-size: 0.82rem;
  color: var(--mid-gray);
  padding-top: 4px;
  font-weight: 500;
}

.press-list-tags {
  margin-bottom: 8px;
}

.press-list-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.press-list-excerpt {
  font-size: 0.86rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.press-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.press-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.press-pagination .page-numbers {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mid-gray);
  text-decoration: none;
  background: transparent;
}

.press-pagination .page-numbers.current {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.press-pagination .page-numbers:hover {
  border-color: var(--black);
  color: var(--charcoal);
}

.press-pagination .page-numbers.prev,
.press-pagination .page-numbers.next {
  font-size: 0.95rem;
}

/* Case card */
.case-card {
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.28s cubic-bezier(.5,.01,.15,1),
              box-shadow 0.28s cubic-bezier(.5,.01,.15,1),
              border-color 0.28s cubic-bezier(.5,.01,.15,1);
  transform-style: preserve-3d;
}
.case-card:hover {
  transform: translateY(-7px) translateZ(4px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.14);
}

.case-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--line-light);
}

.case-card-body { padding: 24px; }
.case-product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Domain card */
.domain-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 32px);
  transition: transform 0.32s cubic-bezier(.5,.01,.15,1),
              box-shadow 0.32s cubic-bezier(.5,.01,.15,1);
  transform-style: preserve-3d;
}
.domain-card:hover {
  transform: translateY(-9px) translateZ(6px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.domain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}
.domain-card > * { position: relative; z-index: 2; }
.domain-card-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.domain-card-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 6px;
}
.domain-card-title {
  font-family: var(--font-base);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.domain-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============================================
   NUMBER STATS
   ============================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--charcoal);
  padding: clamp(24px, 3vw, 36px);
  transition: background 0.28s cubic-bezier(.5,.01,.15,1);
  cursor: default;
}
.stat-item:hover {
  background: #252525;
}
.stat-item:hover .stat-num {
  color: var(--gold-light);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.28s cubic-bezier(.5,.01,.15,1);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ============================================
   DARK SECTION (black bg)
   ============================================ */

.bg-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.bg-charcoal {
  background: var(--charcoal);
  color: var(--text-on-dark);
}

.bg-cream {
  background: var(--bg-light);
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line-light);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.product-pane {
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  background: var(--white);
  transition: background 0.3s cubic-bezier(.5,.01,.15,1);
  display: flex;
  flex-direction: column;
}

.product-pane:hover { background: #f8f6ef; }

.product-pane-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
}
.product-pane-link::after {
  content: "→";
  transition: transform 0.28s cubic-bezier(.5,.01,.15,1);
}
.product-pane-link:hover::after { transform: translateX(5px); }

.product-pane-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: -8px;
}

.product-pane-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}

.product-pane-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-pane-desc {
  font-size: 0.92rem;
  color: var(--mid-gray);
  margin-bottom: 24px;
  max-width: 46ch;
  flex: 1;
}


/* ============================================
   CI PAGE
   ============================================ */

.ci-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.ci-sticky {
  position: sticky;
  top: 100px;
}

.ci-value-grid {
  display: grid;
  gap: 2px;
  background: var(--line-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ci-value {
  background: var(--white);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(96px, max-content) 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

.ci-value-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  padding-top: 2px;
}

.ci-value h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-on-light);
}
.ci-value p { font-size: 0.88rem; color: var(--mid-gray); }

.representative-message {
  padding-top: var(--sp-xl);
  scroll-margin-top: 112px;
}

.representative-message .container {
  max-width: 1120px;
}

.representative-message__grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.representative-message__media {
  position: relative;
}

.representative-message__media picture {
  display: block;
}

.representative-message__image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.14);
}

.representative-message__body {
  max-width: 680px;
}

.representative-message__label {
  color: var(--gold-deep);
}

.representative-message .gold-line {
  margin: 16px 0 24px;
}

.representative-message__title {
  font-family: var(--font-base);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 18px;
  letter-spacing: 0;
}

.representative-message__lead,
.representative-message__copy p {
  line-break: strict;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.representative-message__lead {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: 0;
}

.representative-message__nowrap {
  white-space: nowrap;
}

.representative-message__copy p {
  font-size: 0.98rem;
  line-height: 2;
  color: var(--mid-gray);
  margin-bottom: 18px;
  letter-spacing: 0;
}

.representative-message__signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(158, 126, 69, 0.22);
  color: var(--charcoal);
  font-weight: 700;
}

.representative-message__signature span:first-child {
  color: var(--mid-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .representative-message__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .representative-message__media {
    max-width: 520px;
  }

  .representative-message__image {
    aspect-ratio: 4 / 5;
  }

  .representative-message__body {
    max-width: none;
  }
}

/* Color swatches */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.color-swatch {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.swatch-color {
  aspect-ratio: 1;
}

.swatch-info {
  padding: 8px 10px;
  background: var(--white);
}

.swatch-name {
  font-size: 0.72rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.swatch-hex {
  font-size: 0.68rem;
  color: var(--mid-gray);
  font-family: monospace;
}

/* ============================================
   FORMS
   ============================================ */

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-on-light);
}

.form-required {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.65rem;
  color: #c0392b;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: var(--r-md);
  font-family: var(--font-base);
  font-size: 0.92rem;
  color: var(--text-on-light);
  transition: border-color 0.25s cubic-bezier(.5,.01,.15,1),
              box-shadow 0.25s cubic-bezier(.5,.01,.15,1),
              background 0.25s cubic-bezier(.5,.01,.15,1);
}

.form-control::placeholder { color: rgba(0,0,0,0.3); }

.form-control:hover:not(:focus) {
  border-color: rgba(0,0,0,0.3);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.16);
  background: #fffdf8;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-label .required {
  display: inline-block;
  margin-left: 6px;
  color: #b42318;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-error-summary {
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(180, 35, 24, 0.48);
  border-left-width: 5px;
  border-radius: var(--r-md);
  background: #fff7f5;
  color: var(--text-on-light);
}
.form-error-summary__title {
  margin: 0 0 6px;
  color: #b42318;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}
.form-error-summary__lead {
  margin: 0 0 12px;
  color: #6b1f17;
  font-size: 0.88rem;
  line-height: 1.75;
}
.form-error-summary ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}
.form-error-summary a {
  color: #b42318;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.form-group.has-error .form-label {
  color: #b42318;
}
.form-group.has-error .form-control {
  border-color: #b42318;
  background: #fff9f7;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}
.form-group.has-error .radio-group,
.form-group.has-error .checkbox-label,
.has-error .checkbox-label {
  padding: 14px;
  border: 1px solid rgba(180, 35, 24, 0.5);
  border-radius: var(--r-md);
  background: #fff9f7;
}
.has-error input[type="checkbox"] {
  padding: 0;
  outline: 2px solid #b42318;
  outline-offset: 2px;
}
.form-field-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 0;
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
.form-field-error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: #b42318;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  flex: 0 0 auto;
}

/* Login form specific */
.login-wrap {
  min-height: 100svh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-dark);
}

.login-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  border-right: 1px solid var(--line-dark);
}

.login-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}

.login-box {
  max-width: 400px;
  width: 100%;
}

.login-form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  font-family: var(--font-base);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-form-control::placeholder { color: rgba(255,255,255,0.3); }
.login-form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.18);
}

/* Member dashboard */
.member-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  padding-top: 64px;
}

.member-sidebar {
  background: var(--black);
  padding: 36px 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.sidebar-user {
  padding: 0 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

.sidebar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.sidebar-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.sidebar-role {
  font-size: 0.72rem;
  color: rgba(200,169,110,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.18s;
  border-left: 2px solid transparent;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
}

.sidebar-nav .nav-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar-section-label {
  padding: 20px 24px 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.member-main {
  background: #f5f3ef;
  padding: 48px 56px;
}

.member-section {
  margin-bottom: 64px;
}

.member-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-top-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.member-top-card,
.member-empty,
.member-support-card,
.review-summary,
.review-post,
.review-write {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.member-top-card {
  padding: 20px 22px;
}

.member-top-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.member-top-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.5;
}

.member-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.member-product-tabs,
.review-product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.member-product-tabs {
  margin-bottom: 24px;
}

.member-product-tab,
.rtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--mid-gray);
  text-decoration: none;
  transition: all 0.18s;
}

.member-product-tab.is-active,
.member-product-tab:hover,
.rtab.active,
.rtab:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.member-empty {
  padding: 22px 24px;
  color: var(--mid-gray);
}

.member-admin-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.member-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--white);
}

.member-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.table-scroll-wrap {
  position: relative;
}

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

.purchase-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 0.88rem;
}

.purchase-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-light);
  color: var(--charcoal);
}

.purchase-table tr:last-child td {
  border-bottom: none;
}

.purchase-table tr:hover td {
  background: var(--cream);
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-shipped {
  background: #e3f2fd;
  color: #1565c0;
}

.status-support {
  background: #fff3e0;
  color: #e65100;
}

.member-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.member-main .video-card,
.member-main .member-video-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.member-main .video-card:hover,
.member-main .member-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.member-main .member-video-card.is-unavailable {
  cursor: default;
}

.member-main .member-video-card.is-unavailable:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.member-main .video-thumb,
.member-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--charcoal);
}

.member-video-thumb {
  padding-top: 0;
}

.member-main .video-thumb img,
.member-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-video-thumb img {
  position: absolute;
  inset: 0;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}

.member-main .video-card:hover .video-play-btn,
.member-main .member-video-card:hover .video-play-btn {
  background: rgba(0,0,0,0.18);
}

.video-unavailable-badge {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.82);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.video-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.video-play-icon::after {
  content: "";
  border-left: 18px solid var(--charcoal);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.video-product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
}

.member-main .video-meta,
.member-video-meta {
  padding: 16px;
}

.member-main .video-title,
.member-main .video-desc {
  color: var(--charcoal);
}

.member-main .video-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 4px;
}

.member-main .video-desc {
  font-size: 0.78rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.video-status-note {
  margin-top: 8px;
  font-size: 0.74rem;
  line-height: 1.5;
  color: #8c6b1f;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.modal-inner {
  position: relative;
  width: min(900px, 94vw);
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.modal-iframe-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

.member-main .download-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.member-main .download-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.dl-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.dl-info {
  flex: 1;
  min-width: 0;
}

.dl-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.dl-meta {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.dl-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  background: var(--cream);
}

.member-notice {
  border-radius: var(--r-lg);
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.member-notice.is-success {
  background: #e9f8ef;
  color: #1d6f42;
}

.member-notice.is-error {
  background: #fdeeee;
  color: #9f2f2f;
}

.notice-list,
.member-contact-list,
.member-review-grid {
  display: grid;
  gap: 12px;
}

.notice-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.notice-content {
  min-width: 0;
}

.notice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.notice-dot.urgent {
  background: #e74c3c;
}

.notice-dot.info {
  background: #0068b7;
}

.notice-dot.maintenance {
  background: var(--gold);
}

.notice-dot.neutral {
  background: rgba(0,0,0,0.2);
}

.notice-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.notice-body {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

.notice-date {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.3);
  margin-top: 4px;
}

.member-support-card {
  padding: 24px 26px;
}

.member-contact-list {
  margin-top: 14px;
  gap: 10px;
}

.member-contact-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.review-summary {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 20px;
}

.review-score-big {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.member-main .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.star-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.star-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--line-light);
  border-radius: 3px;
  min-width: 100px;
}

.star-bar {
  height: 100%;
  border-radius: 3px;
  background: #f59e0b;
}

.review-post {
  padding: 20px 24px;
}

.review-post-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0068b7, #003d7a);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.reviewer-facility {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.review-stars {
  font-size: 0.9rem;
  color: #f59e0b;
}

.review-date {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.3);
  white-space: nowrap;
}

.review-body {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.75;
}

.review-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.review-tag {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.72rem;
  color: var(--mid-gray);
  border: 1px solid var(--line-light);
}

.review-helpful {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.helpful-btn {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 3px 10px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.15s;
}

.helpful-btn:hover {
  background: var(--charcoal);
  color: var(--white);
}

.review-write {
  padding: 24px 28px;
  margin-top: 20px;
}

.member-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.member-form-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.member-form-field input,
.member-form-field select,
.member-form-field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--charcoal);
}

.member-form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.star-select {
  font-size: 1.6rem;
  cursor: pointer;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.sp-nav-toggle {
  display: none;
}

@media (max-width: 960px) {
  .member-top-grid,
  .member-inline-grid,
  .member-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .table-scroll-hint {
    display: flex;
  }

  .member-layout {
    grid-template-columns: 1fr;
  }

  .member-sidebar {
    position: static;
    height: auto;
    padding: 20px 0;
  }

  .member-main {
    padding: 28px 20px;
  }

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

  .review-summary {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .member-layout {
    padding-top: 90px;
    overflow-x: hidden;
    background: var(--black);
  }

  .member-sidebar {
    padding: 0;
  }

  .sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    margin-bottom: 0;
    border-bottom: none;
    flex-wrap: wrap;
  }

  .sidebar-avatar {
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .sidebar-nav {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: max-height 0.8s cubic-bezier(0.22,1,0.36,1),
                padding 0.8s cubic-bezier(0.22,1,0.36,1);
  }

  .sidebar-nav.sp-open {
    max-height: 500px;
    padding: 8px 16px 12px;
  }

  .sidebar-nav li a {
    border-left: none;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
  }

  .sidebar-nav li a:hover,
  .sidebar-nav li a.active {
    border-left-color: transparent;
    background: rgba(200,169,110,0.1);
    border-color: transparent;
  }

  .sidebar-section-label {
    display: none;
  }

  .nav-icon {
    display: none !important;
  }

  .sp-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
  }

  .sp-nav-toggle__arrow {
    transition: transform 0.3s;
    font-size: 0.7rem;
  }

  .sp-nav-toggle.is-open .sp-nav-toggle__arrow {
    transform: rotate(180deg);
  }

  .member-main {
    padding: 24px 16px;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100vw;
  }

  .member-section {
    margin-bottom: 40px;
    overflow-x: hidden;
  }

  .member-section-title {
    font-size: 1rem;
  }

  .table-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-lg);
  }

  .table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 0 4px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-deep);
    animation: scrollHintPulse 2s ease-in-out infinite;
  }

  .purchase-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .purchase-table thead,
  .purchase-table tbody,
  .purchase-table tr {
    display: table;
    width: 100%;
    table-layout: auto;
  }

  .purchase-table thead {
    display: table-header-group;
  }

  .purchase-table tbody {
    display: table-row-group;
  }

  .purchase-table tr {
    display: table-row;
  }

  .purchase-table th {
    padding: 10px 12px;
    font-size: 0.68rem;
  }

  .purchase-table td {
    padding: 10px 12px;
  }

  .member-video-grid,
  .download-grid {
    grid-template-columns: 1fr !important;
  }

  .member-main .download-card {
    padding: 14px 16px;
  }

  .dl-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .member-support-card,
  .review-write {
    padding: 18px 16px;
  }

  .review-summary {
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    text-align: center;
  }

  .review-score-big {
    font-size: 2.5rem;
  }

  .review-post {
    padding: 16px 14px;
  }

  .review-post-header {
    flex-direction: column;
    gap: 8px;
  }

  .notice-card {
    padding: 14px 16px;
    flex-direction: column;
    gap: 8px;
  }

  .notice-dot {
    width: 8px;
    height: 8px;
    margin-top: 0;
  }

  .member-section * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .star-bar-wrap {
    min-width: 60px;
  }

  .review-write textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-inner {
    width: 96vw;
  }
}

@keyframes scrollHintPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 36px;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand .footer-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.83rem; max-width: 38ch; }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { display: grid; gap: 10px; }

.footer-col a {
  position: relative;
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.28s cubic-bezier(.5,.01,.15,1);
}
.footer-col a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.32s cubic-bezier(.5,.01,.15,1);
}
.footer-col a:hover { color: var(--white); }
.footer-col a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(3.5rem);
  transition: opacity 0.9s cubic-bezier(.5,.01,.15,1),
              transform 0.9s cubic-bezier(.5,.01,.15,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.5,.01,.15,1);
}
.fade-in.visible { opacity: 1; }

.d-100 { transition-delay: 0.08s; }
.d-200 { transition-delay: 0.16s; }
.d-300 { transition-delay: 0.24s; }
.d-400 { transition-delay: 0.32s; }

/* ============================================
   MARQUEE
   ============================================ */

/* Marquee */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  padding: 0;
  z-index: 6;
}

/* Left/right fade mask */
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.9), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(8,8,8,0.9), transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 18px 0;
  animation: marqueeRun 50s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* EN item — large bold */
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 32px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s;
  white-space: nowrap;
}
.marquee-item:hover { color: rgba(255,255,255,0.75); }

/* JA item — slightly larger, lighter weight */
.marquee-item.ja {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: none;
  color: rgba(255,255,255,0.28);
}
.marquee-item.ja:hover { color: rgba(255,255,255,0.65); }

/* Gold accent item */
.marquee-item.accent {
  color: rgba(200,169,110,0.55);
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: none;
}
.marquee-item.accent:hover { color: rgba(200,169,110,0.9); }

/* Diamond separator */
.marquee-sep {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.35;
  flex-shrink: 0;
  margin: 0 4px;
}

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */

.page-hero {
  background: var(--black);
  padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 7vw, 80px);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.page-hero h1.is-jp {
  font-family: var(--font-ja);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-hero p {
  max-width: 60ch;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .ci-grid { grid-template-columns: 1fr; gap: 40px; }
  .ci-sticky { position: static; }
  .color-swatches { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --sp-2xl: 80px; --sp-xl: 56px; }
  .container { width: min(var(--container), 100% - 32px); }
  .header-inner { padding: 20px 20px 8px; }
  /* Hide desktop nav, show mobile toggle */
  .header-nav--desktop { display: none !important; }
  .menu-toggle { display: flex; }

  /* Mobile fullscreen nav */
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    padding: clamp(100px, 18vh, 160px) 40px clamp(32px, 6vh, 60px);
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1),
                visibility 0.4s;
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
  }

  /* Nav items */
  .mobile-nav__item {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vh, 1.8rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7);
    padding: clamp(10px, 1.8vh, 18px) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1),
                transform 0.4s cubic-bezier(0.22,1,0.36,1),
                color 0.25s;
  }
  .mobile-nav__item:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav.open .mobile-nav__item {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-nav__item:hover {
    color: var(--white);
  }
  .mobile-nav__item.active {
    color: var(--gold);
  }

  /* Stagger */
  .mobile-nav.open > :nth-child(1) { transition-delay: 0.05s; }
  .mobile-nav.open > :nth-child(2) { transition-delay: 0.09s; }
  .mobile-nav.open > :nth-child(3) { transition-delay: 0.13s; }
  .mobile-nav.open > :nth-child(4) { transition-delay: 0.17s; }
  .mobile-nav.open > :nth-child(5) { transition-delay: 0.21s; }
  .mobile-nav.open > :nth-child(6) { transition-delay: 0.25s; }
  .mobile-nav.open > :nth-child(7) { transition-delay: 0.29s; }
  .mobile-nav.open > :nth-child(8) { transition-delay: 0.33s; }
  .mobile-nav.open > :nth-child(9) { transition-delay: 0.37s; }

  /* Divider */
  .mobile-nav__divider {
    height: 1px;
    background: rgba(200,169,110,0.15);
    margin: clamp(10px, 2vh, 20px) 0 clamp(8px, 1.5vh, 16px);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.4s 0.3s, transform 0.5s 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-nav.open .mobile-nav__divider {
    opacity: 1;
    transform: scaleX(1);
  }

  /* External link (YUMEHO) */
  .mobile-nav .nav-external:last-child {
    margin-bottom: clamp(16px, 4vh, 40px);
  }
  .mobile-nav .nav-external {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1px solid rgba(0,120,200,0.25);
    background: rgba(0,120,200,0.05);
    color: rgba(100,180,255,0.9);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.25s,
                opacity 0.4s 0.36s cubic-bezier(0.22,1,0.36,1),
                transform 0.4s 0.36s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-nav.open .nav-external {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-nav .nav-external:hover {
    border-color: rgba(0,120,200,0.5);
    background: rgba(0,120,200,0.1);
  }
  .mobile-nav .nav-external__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(100,180,255,0.45);
  }
  .mobile-nav .nav-external__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.04em;
    flex: 1;
  }
  .product-showcase { grid-template-columns: 1fr; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .press-card { grid-template-columns: 1fr; gap: 6px; }
  .domain-card { aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scroll-indicator { display: none; }
  .color-swatches { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

.bg-light { background: var(--bg-light); }

/* ============================================
   SECTION NUMBER ANCHORS  (Varex-inspired)
   ============================================ */

/* Full-bleed section intro with large number */
.sec-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
  flex-wrap: wrap;
}

.sec-intro-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.sec-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  font-style: italic;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,0.25);
  line-height: 0.85;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  user-select: none;
}

.sec-num.on-light {
  -webkit-text-stroke: 1px rgba(0,0,0,0.1);
}

.sec-intro-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec-intro-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(.5,.01,.15,1) 0.05s,
              transform 0.55s cubic-bezier(.5,.01,.15,1) 0.05s;
}
.sec-intro.visible .sec-intro-label { opacity: 1; transform: translateY(0); }
.sec-intro-label.on-light { color: var(--gold-deep); }

.sec-intro-h {
  font-family: var(--font-base);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(.5,.01,.15,1) 0.14s,
              transform 0.65s cubic-bezier(.5,.01,.15,1) 0.14s;
}
.sec-intro.visible .sec-intro-h { opacity: 1; transform: translateY(0); }
.sec-intro-h.on-light { color: var(--charcoal); }

.sec-intro-sub {
  max-width: 52ch;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  align-self: flex-end;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s cubic-bezier(.5,.01,.15,1) 0.22s,
              transform 0.65s cubic-bezier(.5,.01,.15,1) 0.22s;
}
.sec-intro.visible .sec-intro-sub { opacity: 1; transform: translateY(0); }
.sec-intro-sub.on-light { color: var(--mid-gray); }

/* Horizontal rule with number label */
.section-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0.6;
}
.section-rule::before,
.section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.15;
}
.section-rule-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================
   INNOVATION SLIDER  (Varex-inspired horizontal)
   ============================================ */

.innovation-section {
  background: var(--black);
  overflow: hidden;
}

.innovation-header {
  padding: var(--sp-2xl) 0 0;
}

.innovation-slider {
  padding: 40px 0 clamp(48px, 6vw, 80px);
}

.innovation-track {
  display: flex;
  gap: 20px;
  padding: 0 clamp(24px, 4vw, 80px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: auto;
}
.innovation-track::-webkit-scrollbar { display: none; }
/* PC only: grab cursor */
@media (hover: hover) and (pointer: fine) {
  .innovation-track { cursor: grab; }
  .innovation-track.is-dragging { cursor: grabbing; user-select: none; }
}

.innovation-card {
  flex: 0 0 460px;
  min-width: 0;
  background: var(--charcoal);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.28s ease,
              transform 0.28s ease,
              box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.innovation-card:hover {
  border-color: rgba(200,169,110,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.innovation-card-header {
  position: relative;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 24px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .innovation-card:hover .innovation-card-header { height: 256px; transition: height 0.28s cubic-bezier(.5,.01,.15,1); }
}
.innovation-card-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.5,.01,.15,1);
}
.innovation-card:hover .innovation-card-header::after {
  opacity: 0.85;
}

.innovation-card-bg-num {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 9rem;
  font-style: italic;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.innovation-card-product {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.innovation-card-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.innovation-card-body {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.innovation-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.innovation-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.innovation-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.innovation-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: gap 0.28s cubic-bezier(.5,.01,.15,1),
              border-color 0.28s cubic-bezier(.5,.01,.15,1),
              color 0.28s cubic-bezier(.5,.01,.15,1),
              background 0.28s cubic-bezier(.5,.01,.15,1);
  padding: 9px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}
.innovation-card-link:hover {
  gap: 15px;
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.06);
}

.innovation-card-cert {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* Scroll hint arrow row */
.slider-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 clamp(24px, 4vw, 80px) 36px;
}
.slider-hint-icon {
  opacity: 0.8;
  flex-shrink: 0;
}
.slider-hint-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(200,169,110,0.5);
}
.slider-hint-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,110,0.1), rgba(200,169,110,0.4));
}
.slider-hint-arrow {
  flex-shrink: 0;
  animation: sliderArrowSlide 1.6s ease-in-out infinite;
}
@keyframes sliderArrowSlide {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(6px); opacity: 1; }
}

/* ============================================
   NUMBERED LIST SECTION
   ============================================ */

.numbered-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.numbered-list-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.2s;
}
.numbered-list-item:last-child { border-bottom: none; }
.numbered-list-item:hover { background: rgba(255,255,255,0.03); }

.numbered-list-num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.numbered-list-content {
  padding: 24px 28px;
}

/* ============================================
   NEWS ARTICLE
   ============================================ */

.article-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 72px);
  background: var(--cream);
  border-bottom: 1px solid var(--line-light);
}

.article-back-link {
  font-size: 0.82rem;
  color: var(--mid-gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.article-back-link:hover {
  color: var(--charcoal);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-date {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.article-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) 0;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body > :last-child {
  margin-bottom: 0;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1.6em;
}

.article-body h2 {
  font-size: clamp(1.22rem, 1.7vw, 1.48rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 2.6em 0 0.9em;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 2.4em 0 0.8em;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

.article-body h2 + p,
.article-body h3 + p {
  margin-top: 0;
}

.article-body a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.8em;
}

.article-body figure {
  margin: 2em 0;
}

.article-body figure img {
  margin-bottom: 0.8em;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4em;
  margin-bottom: 1.6em;
}

.article-body ul li,
.article-body ol li {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 0.4em;
}

.article-body table {
  width: 100%;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: clamp(0.96rem, 1.05vw, 1.02rem);
  line-height: 1.75;
}

.spec-table th,
.spec-table td {
  padding: 20px 28px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #d8d0c4;
}

.spec-table th {
  font-weight: 700;
  color: #5e5a52;
  width: 38%;
  background: #f4efe6;
}

.spec-table td {
  color: var(--charcoal);
}

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

.article-nav-link {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-nav-link:hover {
  color: var(--charcoal);
}

.article-nav-link--disabled {
  color: var(--line-light);
  pointer-events: none;
}

/* ============================================
   RESPONSIVE (additions)
   ============================================ */

@media (max-width: 860px) {
  .sec-num { font-size: clamp(3rem, 10vw, 6rem); }
  .sec-intro { gap: 16px; }
  .innovation-card { flex: 0 0 320px; }
  .innovation-card-header { height: 180px; }
}

@media (max-width: 640px) {
  .sec-intro { flex-direction: column; }
  .sec-intro-sub { max-width: none; }
}

/* ============================================
   GRID LAYOUT CLASSES (extracted from inline)
   ============================================ */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}

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

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

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.column-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.column-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.column-card__category {
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.column-card__title {
  margin: 0 0 14px;
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--charcoal);
}

.column-card__excerpt {
  margin: 0 0 18px;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--mid-gray);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.column-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.column-card__cta {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--charcoal);
}

.sec-intro-action {
  align-self: flex-end;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

/* ============================================
   MOBILE-FIRST RESPONSIVE OVERRIDES
   ============================================ */

/* --- Tablet (860px以下) --- */
@media (max-width: 860px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .domain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .domain-card {
    aspect-ratio: auto;
    min-height: 200px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .column-card {
    padding: 22px 20px;
  }
  .column-card__title {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .cta-grid .gold-line {
    margin: 16px auto 24px !important;
  }
  .cta-grid .hero-actions {
    justify-content: center;
  }
  /* ヒーロー動画パネルをモバイルでは非表示 */
  #heroVideoPanel {
    display: none !important;
  }
  /* Hero テキストの最大幅を解除 */
  .hero-dark .container > div {
    max-width: 100% !important;
  }
  /* Press cards */
  .press-card {
    grid-template-columns: 80px 1fr !important;
    gap: 12px !important;
  }
  .press-date {
    font-size: 0.78rem;
  }
}

/* --- スマートフォン (640px以下) --- */
@media (max-width: 640px) {
  :root {
    --sp-2xl: 56px;
    --sp-xl: 40px;
  }
  .container {
    width: min(var(--container), 100% - 40px);
  }

  /* ヘッダー */
  .header-inner {
    height: auto;
    padding: 20px 16px 8px;
  }
  .header-logo__img {
    height: 52px;
  }
  .header-logo {
    gap: 8px;
  }
  .logo-wordmark {
    font-size: 1.8rem;
  }
  .logo-sub {
    font-size: 0.65rem;
  }

  /* SP Video Panel */
  .sp-video-panel {
    display: block;
    margin-top: 32px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(200,169,110,0.2);
    background: rgba(4,8,12,0.9);
  }
  .sp-video-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(200,169,110,0.1);
  }
  .sp-video-panel__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(200,169,110,1), 0 0 16px rgba(200,169,110,0.4);
    animation: videoPulse 1.4s ease-in-out infinite;
  }
  .sp-video-panel__link {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(200,169,110,0.7);
    padding: 4px 12px;
    border: 1px solid rgba(200,169,110,0.25);
    border-radius: var(--r-full);
    transition: all 0.2s;
  }
  .sp-video-panel__link:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .sp-video-panel__video {
    position: relative;
    cursor: pointer;
  }
  .sp-video-panel__scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(0,0,0,0.08) 2px,
      rgba(0,0,0,0.08) 3px
    );
    pointer-events: none;
  }

  .video-modal-header {
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: flex-start !important;
    padding: 12px 14px !important;
  }
  .video-modal-brand {
    min-width: 0;
    flex: 1 1 180px;
  }
  .video-modal-system-label {
    font-size: 0.56rem !important;
    letter-spacing: 0.12em !important;
  }
  .video-modal-link {
    margin-left: auto;
    padding: 6px 12px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
  }

  /* ヒーローセクション */
  .hero-dark .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-dark {
    min-height: 100svh;
    height: 100svh;
    max-height: 100svh;
    padding-top: clamp(90px, 14vh, 130px);
    padding-bottom: clamp(20px, 3vh, 40px);
    box-sizing: border-box;
    justify-content: center;
  }
  .hero-bg-text {
    font-size: clamp(3rem, 18vw, 6rem) !important;
  }
  .hero-overline {
    margin-bottom: clamp(8px, 1.5vh, 16px);
  }
  .hero-dark h1 {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
    margin-bottom: clamp(12px, 2vh, 28px) !important;
  }
  .hero-dark #hi-sub {
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
    margin-bottom: clamp(12px, 2vh, 28px) !important;
  }
  .hero-body {
    font-size: clamp(0.78rem, 1.8vw, 0.88rem) !important;
    line-height: 1.65 !important;
    margin-bottom: clamp(12px, 2vh, 24px) !important;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
  }
  /* SP動画セクション（MV外） */
  .sp-video-section {
    display: block;
    background: var(--bg-dark);
    padding: 32px 0;
  }

  /* Mission グリッド */
  .mission-grid > div {
    padding: 24px 20px !important;
  }

  /* Domain グリッド */
  .domain-grid {
    gap: 10px;
  }
  .domain-card {
    min-height: 180px;
    border-radius: var(--r-md);
  }

  /* Cases グリッド */
  .cases-grid {
    gap: 14px;
  padding-top: 8px;
  }
  .case-card {
    border-radius: var(--r-md);
  }

  /* CTA セクション */
  .cta-grid {
    gap: 24px;
    text-align: center;
  }
  .cta-grid .gold-line {
    margin: 16px auto 24px !important;
  }
  .cta-grid > div:last-child {
    text-align: left;
    padding: 0 12px;
  }

  /* Stats グリッド */
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-num {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  /* Press cards */
  .press-card {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 16px 0 !important;
  }

  /* フッター */
  .footer-col--desktop {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand .footer-logo {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* マーキー */
  .marquee-item {
    font-size: clamp(0.55rem, 2.5vw, 0.7rem);
  }

  /* News詳細ページ — タイトル内側余白 */
  .article-hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .article-hero {
    padding: 76px 0 32px;
  }
  .article-body {
    padding: 40px 0 56px;
  }
  .article-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }
  .article-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .article-nav .btn {
    width: 100%;
    justify-content: center;
  }
  .spec-table {
    font-size: 0.88rem;
  }
  .spec-table th,
  .spec-table td {
    padding: 14px 16px;
  }

  .press-featured {
    padding: 18px !important;
    border-radius: var(--r-md) !important;
  }
  .press-featured__content {
    display: block;
  }
  .press-featured__eyebrow {
    margin-bottom: 12px;
  }
  .press-featured__meta {
    margin-bottom: 10px;
  }
  .press-featured__title {
    max-width: none;
    font-size: clamp(1.28rem, 6vw, 1.78rem);
  }
  .press-featured__excerpt {
    max-width: none;
    font-size: 0.88rem;
  }
  .press-featured__footer {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
  }
  .press-featured__info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .press-featured__info-item {
    padding: 0 0 10px;
  }
  .press-featured__info-value {
    font-size: 0.88rem;
  }
  .press-featured__cta {
    width: 100%;
    min-height: 44px;
  }
  .press-list-item {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 20px 0 !important;
  }
  .press-list-date {
    padding-top: 0 !important;
  }
  .press-list-title {
    font-size: 0.92rem !important;
  }
  .press-filter {
    gap: 6px !important;
    margin-bottom: 28px !important;
  }
  .filter-btn {
    padding: 5px 12px !important;
    font-size: 0.72rem !important;
  }
  .press-pagination {
    margin-top: 36px !important;
  }
  .press-pagination .page-numbers {
    width: 34px;
    height: 34px;
  }

  /* Cases — Stats バー 4列→2列 */
  .cases-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Cases — Featured 2カラム→1カラム */
  .cases-featured-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 20px !important;
    border-radius: var(--r-md) !important;
  }
  .cases-featured-grid > div:last-child {
    order: -1;
  }

  /* Cases — Featured内ボタン中央揃え */
  .cases-featured-grid .btn {
    display: flex;
    margin-inline: auto;
    width: 100%;
    justify-content: center;
  }
  .cases-featured-copy {
    min-width: 0;
  }
  .cases-featured-meta {
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .cases-featured-summary {
    font-size: 0.88rem !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
  }
  .cases-metrics {
    grid-template-columns: 1fr !important;
    border-left: none !important;
    border-top: 3px solid #0068b7 !important;
    border-radius: 6px !important;
  }
  .cases-metric {
    padding: 14px !important;
    text-align: left !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 104, 183, 0.1) !important;
  }
  .cases-metric:last-child {
    border-bottom: none !important;
  }
  .cases-metric__label {
    font-size: 0.72rem !important;
    margin-bottom: 6px !important;
  }
  .cases-metric__value {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }
  .cases-spec-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .cases-spec-card {
    padding: 14px !important;
  }
  .cases-spec-card__value {
    font-size: 0.98rem !important;
  }
  .cases-spec-card__meta {
    font-size: 0.8rem !important;
  }
  .cases-spec-card__body {
    font-size: 0.86rem !important;
    line-height: 1.8 !important;
  }

  /* Cases — All Cases 3列→1列 */
  .cases-all-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Cases — section header flex縦積み */
  .section-header[style*="display:flex"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* Cases — CTA 本文のみ左揃え */
  .cases-cta p {
    text-align: left !important;
  }

  /* Cases — CTA ボタン縦積み */
  .section.bg-dark [style*="display:flex"][style*="justify-content:center"] {
    flex-direction: column;
    align-items: stretch;
  }

  /* Column — 3列カードをSP向けに1列化 */
  .sec-intro .sec-intro-action {
    width: 100%;
    justify-content: center;
    text-align: center;
    align-self: stretch;
  }
  .column-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .column-card {
    padding: 20px 18px;
    border-radius: 20px;
  }
  .column-card__category {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }
  .column-card__title {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.5;
  }
  .column-card__excerpt {
    margin-bottom: 14px;
    font-size: 0.82rem;
    line-height: 1.7;
    -webkit-line-clamp: 2;
  }
  .column-card__meta {
    padding-top: 12px;
    font-size: 0.72rem;
  }

  /* Contact — 2カラム→1カラム */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .contact-grid > div:first-child {
    position: static !important;
  }
  /* Contact — フォーム2列→1列 */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Identity — コンテナ内側余白（カード以外） */
  .section .container,
  .page-hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ci-value-grid {
    margin-left: -16px;
    margin-right: -16px;
  }

  /* Identity — Name Origin 2カラム→1カラム */
  .identity-name-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Identity — Brand Values */
  .ci-value {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 20px !important;
  }
  .ci-value-num {
    font-size: 2rem;
  }
  .ci-value h3 {
    font-size: 0.92rem;
  }

  .representative-message__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .representative-message .container {
    width: min(100% - 32px, 520px);
    padding-left: 0;
    padding-right: 0;
  }

  .representative-message__media {
    max-width: 520px;
    order: 2;
  }

  .representative-message__image {
    aspect-ratio: 4 / 5;
  }

  .representative-message__body {
    display: contents;
    max-width: none;
  }

  .representative-message__heading {
    order: 1;
  }

  .representative-message__text {
    order: 3;
  }

  .representative-message__title {
    font-size: 1.7rem;
    margin-bottom: 0;
  }

  .representative-message__lead {
    font-size: 0.96rem;
    line-height: 1.82;
    overflow-wrap: normal;
    word-break: normal;
  }

  .representative-message__copy p {
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .representative-message__signature {
    display: block;
  }

  .representative-message__signature span {
    display: block;
  }

  .representative-message__signature span + span {
    margin-top: 4px;
  }

  /* Identity — Vision 本文のみ左揃え */
  .section.bg-cream [style*="text-align:center"] p {
    text-align: left !important;
  }

  /* Identity — 会社概要テーブル */
  .company-table th,
  .company-table td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    white-space: normal !important;
  }
  .company-table th {
    padding-top: 14px !important;
    padding-bottom: 4px !important;
    font-size: 0.78rem !important;
  }
  .company-table td {
    padding-bottom: 14px !important;
    font-size: 0.9rem !important;
  }
  .company-table tr {
    display: block;
  }

  /* Identity — page hero */
  .page-hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  /* Identity — Vision テキストのbr除去 */
  .section br {
    display: inline;
  }

  /* ビデオモーダル */
  #videoModalInner {
    width: 96vw !important;
  }

  /* セクション番号 */
  .sec-num {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  /* Innovation カード */
  .innovation-card {
    flex: 0 0 85vw;
  }
  .innovation-card-header {
    height: 160px;
  }
  .innovation-slider {
    padding-bottom: clamp(24px, 4vw, 48px);
  }
  .innovation-track {
    padding: 0 20px;
  }
  .slider-hint {
    display: flex;
    padding-bottom: 20px;
  }
  .innovation-card-body {
    padding: 20px;
  }
  .innovation-card-product {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .innovation-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* スクロールインジケータ */
  .scroll-indicator {
    display: none;
  }
}

/* --- 超小型スマホ (375px以下) --- */
@media (max-width: 375px) {
  .container {
    width: min(var(--container), 100% - 16px);
  }
  .header-inner {
    padding: 20px 12px 8px;
  }
  .logo-wordmark {
    font-size: 1.4rem;
  }
  .header-logo__img {
    height: 42px;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .innovation-card {
    flex: 0 0 90vw;
  }
}
