@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8B6E2E;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #242424;
  --cream: #F5F0E8;
  --cream-dim: #C8BFA8;
  --font-serif: 'Cormorant Garamond', serif;
  --font-jp: 'Noto Serif JP', serif;
  --font-mono: 'Space Mono', monospace;
  --font-display: 'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-jp);
  overflow-x: hidden;
  cursor: none;
}

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

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }

/* CURSOR */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  background: var(--gold-light);
}

.btn-secondary {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
}

/* Services Grid */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
}

.sp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
}

/* ===== VERTICAL SERVICE LIST (services.html) ===== */
.sp-grid-v {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
}

.sp-grid-v .sp-card {
  padding: 52px 100px 52px 200px;
}

.sp-grid-v .sp-icon {
  top: 52px;
  left: 60px;
  transform: none;
  font-size: 3.5rem;
}

.sp-grid-v .sp-num {
  top: 50%;
  right: 60px;
  left: auto;
  transform: translateY(-50%);
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.06);
}

.sp-grid-v .sp-title {
  font-size: 1.8rem;
}

.sp-grid-v .sp-desc {
  max-width: 600px;
}

.sp-grid-v .price-table {
  max-width: 400px;
}

/* Even cards: mirror layout (icon right, number left; title/en right-aligned, body left) */
.sp-grid-v .sp-card:nth-child(even) {
  padding: 52px 200px 52px 100px;
}
.sp-grid-v .sp-card:nth-child(even) .sp-icon {
  left: auto;
  right: 60px;
  top: 52px;
  transform: none;
}
.sp-grid-v .sp-card:nth-child(even) .sp-num {
  right: auto;
  left: 60px;
}
.sp-grid-v .sp-card:nth-child(even) .sp-title,
.sp-grid-v .sp-card:nth-child(even) .sp-en {
  text-align: right;
}

@media (max-width: 900px) {
  .sp-grid-v .sp-card {
    padding: 48px 24px 48px 110px;
  }
  .sp-grid-v .sp-card:nth-child(even) {
    padding: 48px 110px 48px 24px;
  }
  .sp-grid-v .sp-icon {
    left: 24px;
    font-size: 2.8rem;
  }
  .sp-grid-v .sp-card:nth-child(even) .sp-icon {
    left: auto;
    right: 24px;
  }
  .sp-grid-v .sp-num {
    display: none;
  }
}

@media (max-width: 900px) {

  .sp-grid,
  .sp-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Service Card common */
.sp-card {
  background: var(--dark-2);
  padding: 104px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.sp-card:hover {
  background: var(--dark-3);
}

.sp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.sp-card:hover::before {
  height: 100%;
}

.sp-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201, 168, 76, 0.18);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.sp-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4.5rem;
  line-height: 1;
  display: block;
}

.sp-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 6px;
}

.sp-en {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sp-desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 24px;
}

.sp-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.sp-card:hover .sp-link {
  gap: 14px;
}

.sp-link::after {
  content: '→';
}

/* Service Card CTA Link */
.card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.3s;
}

.card-cta-link:hover {
  gap: 14px;
  color: var(--gold-light);
}

/* Testimonials */
.testimonials-section {
  padding: 110px 0;
  background: var(--dark-2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--dark-3);
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.t-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 24px;
  position: relative;
}

.t-quote::before {
  content: '“';
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
}

.t-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}

.t-role {
  font-size: 0.65rem;
  color: var(--cream-dim);
  opacity: 0.6;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ST Lab Grid */
.st-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .st-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

/* Sticky CTA Bar */
.sticky-cta {
  display: block; /* Persistent across all screen sizes */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding: 12px 0; /* Adjust padding for inner container flow */
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

.sticky-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sticky-right a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.sticky-right a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .sticky-cta-inner {
    padding: 0 24px;
  }
}

/* Gold Ticker Band */
.ticker-band {
  background: #C9A84C;
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 5;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: scroll-ticker 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  font-weight: 700;
  padding: 0 40px;
}

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

@media (max-width: 768px) {
  .ticker-band { padding: 10px 0; }
  .ticker-item { font-size: 0.65rem; padding: 0 25px; }
}

/* Standard Boilerplate */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-tagline {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 60px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

/* PHILOSOPHY REDESIGN */
.phi-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 100px;
  align-items: stretch;
}

.phi-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: left;
}

.phi-title span {
  color: var(--gold);
}

.phi-body {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--cream);
  max-width: 540px;
}

.phi-body p {
  margin-bottom: 28px;
}

.phi-body strong {
  color: var(--gold);
  font-weight: 500;
}

.phi-quote-box {
  padding-left: 44px;
  border-left: 1px solid var(--gold);
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.phi-quote {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: auto;
  padding-bottom: 24px;
}

.phi-quote-cap {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.phi-right {
  padding-top: 202px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .phi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .phi-right {
    padding-top: 0;
  }

  .phi-quote-box {
    padding-left: 24px;
    border-left-width: 2px;
    margin-top: 40px;
  }

  .phi-quote {
    font-size: 1.2rem;
    margin-bottom: 24px;
    padding-bottom: 0;
  }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--gold);
}

.footer-logo span {
  color: var(--cream-dim);
}

.footer-tagline {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.42rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 3px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: none;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  nav {
    padding: 20px 28px;
  }

  .section-inner {
    padding: 72px 28px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg);
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  padding-top: 120px;
  padding-bottom: 70px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201, 168, 76, 0.04) 0%, transparent 45%),
    var(--dark);
}

/* ===== HERO WATERMARK LAYERS ===== */
.hero-wm-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
}

.hero-wm-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22vw;
  color: #C9A84C;
  opacity: 0.025;
  line-height: 1;
}

/* ===== HERO LIGHTHOUSE BEAM ===== */
.hero-lighthouse {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 90px at 3% 45%, rgba(255, 245, 200, 0.15) 0%, transparent 100%),
    conic-gradient(
      from 0deg at 3% 45%,
      transparent 0deg,
      transparent 58deg,
      rgba(201, 168, 76, 0.05) 70deg,
      rgba(255, 252, 220, 0.025) 84deg,
      rgba(201, 168, 76, 0.05) 98deg,
      transparent 110deg,
      transparent 360deg
    );
  mask: radial-gradient(ellipse 110% 100% at 3% 45%, white 10%, rgba(255,255,255,0.55) 45%, transparent 78%);
  -webkit-mask: radial-gradient(ellipse 110% 100% at 3% 45%, white 10%, rgba(255,255,255,0.55) 45%, transparent 78%);
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.hsi-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.hsi-line {
  width: 1px;
  height: 52px;
  background: rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.hsi-dot {
  width: 1px;
  height: 18px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: absolute;
  top: -18px;
  animation: hsi-scroll 2.2s ease-in-out infinite;
}

@keyframes hsi-scroll {
  0%   { top: -18px; opacity: 1; }
  75%  { top: 52px;  opacity: 0.4; }
  100% { top: 52px;  opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.0vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 10px;
  text-align: center;
}

.hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.22em;
  color: var(--cream-dim);
  margin-bottom: 28px;
  text-align: center;
}

.hero-desc {
  font-size: 0.93rem;
  line-height: 2;
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(201, 168, 76, 0.08);
}

.badge-gold,
.badge-dim {
  border-color: var(--gold);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  background: transparent;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.chess-wrap {
  position: relative;
  width: 300px;
  height: 300px;
}

.chess-board-el {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid rgba(201, 168, 76, 0.15);
  opacity: 0.12;
}

.cc {
  border: 0.5px solid rgba(201, 168, 76, 0.15);
}

.cc.l {
  background: rgba(201, 168, 76, 0.1);
}

.chess-king-el {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 108px;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  animation: floatK 4s ease-in-out infinite;
  text-shadow: 0 0 50px rgba(201, 168, 76, 0.25);
}

@keyframes floatK {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

.hs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-family: var(--font-mono);
}

.hs-n {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hs-l {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ===== PROFILE SECTION REDESIGN ===== */
.profile-section {
  background: var(--dark);
}

.profile-header {
  margin-bottom: 60px;
}

.profile-title-group {
  margin-left: 680px;
}

.profile-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 300;
  color: #fff;
  margin-top: 20px;
  white-space: nowrap;
}

.profile-main-title span {
  color: var(--gold);
}

.profile-container {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 64px;
  align-items: flex-start;
}

.profile-left {
  position: sticky;
  top: 120px;
}

.profile-card {
  background: var(--dark-2);
  border: 1px solid var(--gold);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pc-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.pc-emoji {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.6;
}

.pc-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.pc-shoulder {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pc-tag {
  font-family: var(--font-jp);
  font-size: 0.65rem;
  padding: 4px 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  color: var(--cream-dim);
}

.pc-bilingual-btn {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.profile-right {
  max-width: 720px;
}

.story-section {
  margin-bottom: 56px;
}

.story-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}

.story-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

.story-content p {
  margin-bottom: 16px;
}

.story-intro {
  margin-bottom: 20px;
  color: #fff;
}

.text-gold {
  color: var(--gold);
}

.exp-list {
  list-style: none;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.exp-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.exp-list li:before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 20px;
}

@media (max-width: 1000px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .profile-left {
    position: static;
  }

  .profile-right {
    max-width: 100%;
  }
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 60px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .profile-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    font-size: 3rem;
  }
}

/* ===== ST LAB PAGE ===== */

/* Fixed full-page watermark */
.sl-page-wm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72vw;
  max-width: 900px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.sl-page-wm img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.08;
  mix-blend-mode: screen;
}

.sl-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.sl-hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(201, 168, 76, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.sl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 110px 60px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sl-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 16px;
}

.sl-hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.sl-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.sl-hero-desc {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--cream-dim);
  margin-bottom: 36px;
}

.sl-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sl-pill {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

.sl-emblem {
  width: 280px;
  height: 280px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sl-emblem-bg {
  position: absolute;
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
}

.sl-big {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.sl-small {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
  display: block;
}

.sl-quick-facts {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.sqf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  gap: 12px;
}

.sqf-row:last-child {
  border-bottom: none;
}

.sqf-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.sqf-val {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  text-align: right;
}

/* Hero right panel — fills the grid row so photo matches left column height */
.sl-hero-right {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

/* Hero photo — stretches to fill the entire right column */
.sl-hero-photo {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 320px;
}

.sl-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

/* Hero buttons row */
.sl-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Emblem text stack */
.sl-emblem-text {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sub-motto under ST LAB in emblem */
.sl-sub-motto {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-top: 10px;
  display: block;
  text-align: center;
  opacity: 0.6;
}

/* ===== PHILOSOPHY ===== */
.slph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 52px;
  align-items: center;
}

.slph-h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.slph-p {
  margin-bottom: 24px;
  line-height: 2;
  color: var(--cream-dim);
}

.slph-p--last { margin-bottom: 0; }

.slph-quote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 40px;
}

.slph-quote--last { margin-bottom: 0; }

.slph-quote-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

.slph-quote-text--sm { font-size: 1.8rem; }

.slph-quote-text em { font-style: normal; color: var(--gold); }

.slph-quote-attr {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 16px;
}

/* ===== CURRICULUM CARDS ===== */
.cf-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: border-color 0.25s;
}

.cf-item:hover { border-color: rgba(201, 168, 76, 0.25); }

.cf-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
}

.cf-h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.cf-p {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--cream-dim);
}

.cf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cf-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 4px 10px;
  letter-spacing: 0.08em;
}

/* ===== TIMELINE / ROADMAP ===== */
.tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 52px;
}

.tl-track {
  position: relative;
  padding-left: 40px;
}

.tl-line {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1));
}

.tl-item {
  position: relative;
  padding-bottom: 48px;
}

.tl-item--last { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.tl-period {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.tl-h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.tl-p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--cream-dim);
}

.tl-recommend {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px;
}

.tl-rec-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.2em;
}

.tl-rec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tl-rec-li {
  font-size: 0.88rem;
  color: var(--cream-dim);
  display: flex;
  gap: 12px;
}

.tl-rec-arrow { color: var(--gold); flex-shrink: 0; }

/* ===== APPLY / ENTRY ===== */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
  align-items: start;
}
.apply-left {
  padding-top: 21px;
}

.ap-h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.ap-p {
  margin-bottom: 40px;
  line-height: 2;
  color: var(--cream-dim);
}

.apply-price-table {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.apt-header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.apt-row {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.apt-row--last { border-bottom: none; }

.apt-name {
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.apt-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

.apt-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.apt-unit {
  font-size: 0.7rem;
  color: var(--cream-dim);
}

/* ===== APPLICATION FORM ===== */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.af-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.af-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.af-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.af-input,
.af-select,
.af-textarea {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  padding: 12px 16px;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.af-input:focus,
.af-select:focus,
.af-textarea:focus { border-color: rgba(201, 168, 76, 0.5); }

.af-input::placeholder,
.af-textarea::placeholder { color: var(--cream-dim); opacity: 0.4; }

.af-select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.af-textarea {
  min-height: 120px;
  resize: none;
}

.apply-form .btn-primary { align-self: flex-start; margin-top: 10px; }

/* ===== 3 PILLARS SECTION ===== */
.slpil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.slpil-card {
  padding: 40px 32px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: border-color 0.25s, background 0.25s;
}

.slpil-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.slpil-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.slpil-en {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.slpil-ja {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 300;
}

.slpil-p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--cream-dim);
}

/* ===== ACTIVITY PHOTO (stlab2) ===== */
.tl-photo {
  margin-bottom: 20px;
}

.tl-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* Mobile responsive for stlab sections */
@media (max-width: 768px) {
  .slph-grid,
  .tl-grid,
  .apply-grid { grid-template-columns: 1fr; gap: 48px; }
  .slph-quote-text { font-size: 1.6rem; }
  .slph-quote-text--sm { font-size: 1.4rem; }
  .cf-item { padding: 28px; }
  .cf-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .slpil-grid { grid-template-columns: 1fr; }
  .slpil-card { padding: 28px 24px; }
  .af-row-2 { grid-template-columns: 1fr; }
  .apply-form .btn-primary { align-self: stretch; text-align: center; }
  .sl-hero-photo { margin-bottom: 0; }
}

/* ===== ENGLISH PAGE ===== */
.en-hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.en-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 55%), var(--dark);
}

.en-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 60px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.en-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}

.en-hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.en-hero-desc {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--cream-dim);
  max-width: 500px;
  margin-bottom: 36px;
}

.en-hero-right {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
}

.identity-card-title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.identity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.identity-flag {
  font-size: 1.8rem;
  min-width: 36px;
}

.identity-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.identity-val {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
  margin-top: 52px;
}

.why-card {
  background: var(--dark-3);
  padding: 40px 32px;
  transition: background 0.3s;
}

.why-card:hover {
  background: var(--dark-4);
}

.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.25;
}

.why-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--cream-dim);
}

/* RESPONSIVE SUBPAGES */
@media (max-width: 1000px) {

  .sl-hero-content,
  .en-hero-content {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .sl-hero-bg-text {
    display: none;
  }

  .sl-hero-right,
  .en-hero-right {
    margin-top: 40px;
  }

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

/* Contact Card Refinement */
.contact-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.cc-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #fff;
}

.cc-note {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-top: 16px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .contact-card {
    padding: 40px;
  }
  .cc-heading {
    font-size: 1.8rem;
  }
}

/* ===== TICKER BAND (03→04) ===== */
.ticker-band {
  background: #C9A84C;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.ticker-mask {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  gap: 40px;
  padding: 14px 0;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.ticker-item {
  color: #111111;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.ticker-sep {
  color: #111111;
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1;
}

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

@media (max-width: 768px) {
  .ticker-track {
    gap: 28px;
    padding: 12px 0;
    animation-duration: 24s;
  }
  .ticker-item,
  .ticker-sep {
    font-size: 0.78rem;
  }
}

/* ===== 04 ST LAB title right-alignment (mirrors 02 PROFILE) ===== */
/* Wrapper-agnostic: works whether stlab-title-group div exists or not */
.stlab-title-group {
  margin-left: 0;
}

#stlab .section-label,
#stlab .section-title {
  margin-left: 680px;
}

/* Font size override: 500px available width, line-1 = 10chars → max 2.8rem = 44.8px */
#stlab .section-title {
  font-size: clamp(1.8rem, 3.0vw, 2.8rem);
  word-break: keep-all;
}

@media (max-width: 1100px) {
  #stlab .section-label,
  #stlab .section-title {
    margin-left: 400px;
  }
}

@media (max-width: 900px) {
  #stlab .section-label,
  #stlab .section-title {
    margin-left: 0;
  }
}

/* ===== PAGE HERO (services / stlab sub-pages) ===== */
.page-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.page-bg-num {
  position: absolute;
  top: 60px;
  left: 50px;
  font-family: var(--font-display);
  font-size: 18vw;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.page-hero > p:last-child {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
  max-width: 600px;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 120px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ===== LONG-FORM SERVICE SECTIONS (services.html) ===== */

html {
  scroll-behavior: smooth;
}

/* Layout containers */
.sv-wrapper { background: var(--dark); }

.sv-section {
  position: relative;
  padding: 80px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
  background: var(--dark);
}

/* Even sections: #1A1A1A base + subtle gold glow from right (deco side reversed) */
.sv-section:nth-child(even) {
  background:
    radial-gradient(ellipse 55% 70% at 95% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    var(--dark-3);
}

/* Zigzag: even sections swap left/right columns */
.sv-section:nth-child(even) .sv-col-left {
  order: 2;
}
.sv-section:nth-child(even) .sv-col-right {
  order: 1;
}

/* Zig-Zag: flex row layout, even sections reversed */
.sv-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Even sections: reverse direction — text left, deco right */
.sv-section:nth-child(even) .sv-inner {
  flex-direction: row-reverse;
}

/* Decorative panel: layered number + chess icon */
.sv-deco {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  pointer-events: none;
  user-select: none;
}

.sv-deco-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 11vw, 10rem);
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sv-deco-icon {
  font-size: 3.5rem;
  color: var(--cream-dim);
  opacity: 0.2;
  margin-top: -10px;
  line-height: 1;
}

/* Text content panel */
.sv-content {
  flex: 1;
  min-width: 0;
}

/* Catch line — italic serif, visually distinct from body */
.sv-catch {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Catch line em = upright within italic for contrast */
.sv-catch em { font-style: normal; color: var(--gold); }

/* Horizontal divider */
.sv-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin-bottom: 40px;
}

/* Body paragraphs */
.sv-body { margin-bottom: 24px; }
.sv-body p { font-size: 0.95rem; line-height: 2.1; color: var(--cream-dim); margin-bottom: 20px; }
.sv-body p:last-child { margin-bottom: 0; }

/* 2-column skills card grid */
.sv-skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 20px 0 28px;
}

.sv-skill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sv-skill:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  color: var(--cream);
}

.sv-skill-mark {
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ---- 2-column layout for services redesign ---- */
.sv-section-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.sv-two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 28px;
  align-items: flex-start;
}

.sv-col-left {
  position: sticky;
  top: 100px;
}

.sv-big-num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 12vw, 10rem);
  color: var(--gold);
  opacity: 0.1;
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: -10px;
  pointer-events: none;
  user-select: none;
}

.sv-col-icon {
  font-size: 2.8rem;
  color: var(--cream-dim);
  opacity: 0.35;
  display: block;
  margin-bottom: 20px;
}

.sv-col-left .section-title {
  font-size: clamp(1.5rem, 2.0vw, 2.2rem);
  word-break: keep-all;
  line-height: 1.25;
}

.sv-col-left .sv-catch {
  font-size: 0.95rem;
}

.sv-col-left .phi-quote {
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
}

/* Mobile */
@media (max-width: 960px) {
  .sv-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sv-col-left {
    position: static;
  }
  .sv-section-wrap {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .sv-section { padding: 60px 0; }
  .sv-inner {
    padding: 0 24px;
    flex-direction: column !important;
    gap: 24px;
  }
  .sv-deco {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-top: 0;
  }
  .sv-deco-num { font-size: clamp(3.5rem, 16vw, 6rem); }
  .sv-deco-icon { font-size: 2.4rem; margin-top: 0; }
  .sv-catch { font-size: 1rem; }
  .sv-skills { grid-template-columns: 1fr; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--dark);
  padding: 120px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 60px;
}

.faq-list {
  margin-top: 52px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}

.faq-q:hover { opacity: 0.8; }

.faq-q-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
  font-weight: 400;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 20px;
  text-align: center;
  display: block;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--cream-dim);
}

.faq-a strong { color: var(--cream); font-weight: 500; }

/* ===== CTA BOTTOM ===== */
.cta-bottom {
  background: var(--dark-3);
  padding: 120px 60px;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

/* "初回30分無料" — mono uppercase note above title */
.cta-note {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.cta-bottom h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-bottom h2 em { font-style: normal; color: var(--gold); }

/* Body text */
.cta-sub {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--cream-dim);
  margin-bottom: 52px;
}

/* Buttons: primary stacked above a subtle back-link */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* "← Top に戻る" — small mono text link, understated */
.cta-back {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.25s;
}

.cta-back:hover { opacity: 1; color: var(--cream); }

/* Mobile */
@media (max-width: 768px) {
  .faq-section { padding: 80px 0; }
  .faq-inner { padding: 0 24px; }
  .faq-q-text { font-size: 0.9rem; }
  .cta-bottom { padding: 80px 24px; }
}

/* ==========================================================================
   ST LAB REDESIGN — New Section Styles
   ========================================================================== */

/* ---- POSITIONING SECTION ("塾ではない。探究でもない。") ---- */
.sl-position { padding: 72px 0; background: var(--dark-2); }
.slpos-wrapper { max-width: 900px; margin: 0 auto; padding: 0 60px; }
.slpos-pre {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slpos-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 64px;
}
.slpos-headline em { color: var(--gold); font-style: normal; }
.slpos-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.08);
  margin-bottom: 60px;
}
.slpos-col { padding: 40px 40px 48px; }
.slpos-col--not { background: var(--dark); }
.slpos-col--yes { background: rgba(201,168,76,0.04); }
.slpos-col-head {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.slpos-col--not .slpos-col-head { color: rgba(255,255,255,0.3); }
.slpos-col--yes .slpos-col-head { color: var(--gold); }
.slpos-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.slpos-item:last-child { border-bottom: none; }
.slpos-mark--x { color: rgba(255,255,255,0.22); font-size: 1rem; flex-shrink: 0; }
.slpos-mark--y { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.slpos-seat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.08);
}
/* 左列 — 縦央揃えで上下余白を均等に */
.slpos-seat-left {
  background: var(--dark-3);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slpos-seat-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.slpos-seat-title em { color: var(--gold); font-style: normal; }
.slpos-seat-sub { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.9; }
/* 行頭「」の空白補正 — 日本語フォントの開き括弧は約0.25emの余白を持つ */
.jp-open { margin-left: -0.25em; }
/* 右列 — 水平パディングを縮め、値が折り返さない幅を確保 */
.slpos-seat-right { background: var(--dark); padding: 48px 28px; }
.slpos-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 0.88rem;
}
.slpos-fact:last-child { border-bottom: none; }
.slpos-fact-check { color: var(--gold); flex-shrink: 0; }
.slpos-fact-label { color: var(--cream-dim); min-width: 52px; flex-shrink: 0; }
.slpos-fact-val { color: var(--cream); white-space: nowrap; }

/* ---- THINKING METHOD SECTION ---- */
.sl-method { padding: 80px 0; background: var(--dark); }
.slm-inner { max-width: 1100px; margin: 0 auto; padding: 0 60px; }
.slm-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.07);
  margin: 60px 0;
}
.slm-step {
  background: var(--dark-3);
  padding: 36px 28px 40px;
  position: relative;
  transition: background 0.25s;
}
.slm-step:hover { background: rgba(201,168,76,0.04); }
.slm-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.slm-arrow {
  position: absolute;
  right: -11px;
  top: 40px;
  color: rgba(201,168,76,0.5);
  font-size: 0.9rem;
  z-index: 2;
  pointer-events: none;
}
.slm-step:last-child .slm-arrow { display: none; }
.slm-step-en {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.slm-step-ja {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.1;
}
.slm-step-p { font-size: 0.82rem; line-height: 1.8; color: var(--cream-dim); }
.slm-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.slm-photo { border-radius: 12px; overflow: hidden; }
.slm-photo img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: 12px; }
.slm-text-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slm-text-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 20px;
}
.slm-text-h3 em { color: var(--gold); font-style: normal; }
.slm-text-p { font-size: 0.9rem; line-height: 2; color: var(--cream-dim); margin-bottom: 32px; }
.slm-pillars { display: flex; flex-direction: column; gap: 12px; }
.slm-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-3);
  border-left: 2px solid rgba(201,168,76,0.5);
}
.slm-pillar-mark { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }
.slm-pillar-title { font-family: var(--font-serif); font-size: 1rem; color: var(--cream); margin-bottom: 3px; }
.slm-pillar-text { font-size: 0.82rem; line-height: 1.7; color: var(--cream-dim); }

/* ---- SESSION FLOW SECTION ---- */
.sl-flow { padding: 80px 0; background: var(--dark-3); }
.slf-inner { max-width: 1100px; margin: 0 auto; padding: 0 60px; }
.slf-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.06);
  margin: 60px 0;
}
.slf-step { background: var(--dark-2); padding: 40px 28px; position: relative; }
.slf-step::after {
  content: '❯';
  position: absolute;
  right: -10px;
  top: 46px;
  color: rgba(201,168,76,0.4);
  font-size: 0.8rem;
  z-index: 2;
}
.slf-step:last-child::after { display: none; }
.slf-time {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 4px;
}
.slf-min { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.slf-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--cream); font-weight: 300; margin-bottom: 6px; }
.slf-en { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.2em; color: rgba(201,168,76,0.4); text-transform: uppercase; margin-bottom: 12px; display: block; }
.slf-p { font-size: 0.82rem; line-height: 1.8; color: var(--cream-dim); }
.slf-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.slf-photo { border-radius: 12px; overflow: hidden; }
.slf-photo img { width: 100%; height: 400px; object-fit: cover; display: block; border-radius: 12px; }
.slf-info { display: flex; flex-direction: column; gap: 24px; }
.slf-info-title { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 300; color: var(--cream); line-height: 1.3; }
.slf-info-title em { color: var(--gold); font-style: normal; }
.slf-detail-box { background: var(--dark); border: 1px solid rgba(201,168,76,0.12); }
.slf-detail-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid rgba(201,168,76,0.07); font-size: 0.88rem; }
.slf-detail-row:last-child { border-bottom: none; }
.slf-detail-label { color: var(--cream-dim); }
.slf-detail-val { color: var(--gold); font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em; }

/* ---- SHOWCASE SECTION ---- */
.sl-showcase { background: var(--dark-2); overflow: hidden; }
.slshw-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; max-width: 1600px; margin: 0 auto; background: var(--dark-2); }
.slshw-photo { display: flex; align-items: center; padding: 56px 24px 56px 64px; }
.slshw-photo img { width: 100%; height: auto; max-height: 500px; object-fit: cover; display: block; border-radius: 12px; transition: transform 8s ease; filter: brightness(0.92); }
.slshw-photo:hover img { transform: scale(1.02); }
.slshw-text { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; background: var(--dark-2); position: relative; }
.slshw-text::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent); }
.slshw-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.slshw-h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 24px; }
.slshw-h2 em { color: var(--gold); font-style: normal; }
.slshw-p { font-size: 0.92rem; line-height: 2; color: var(--cream-dim); max-width: 440px; margin-bottom: 40px; }
.slshw-quote { padding: 24px 32px; border-left: 2px solid var(--gold); background: rgba(201,168,76,0.03); max-width: 440px; }
.slshw-quote-text { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--cream); line-height: 1.7; }
.slshw-quote-attr { display: block; font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.7; margin-top: 12px; }

/* ---- INSTRUCTOR SECTION ---- */
.sl-instructor { padding: 80px 0; background: var(--dark); }
.slin-inner { max-width: 1100px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: flex-start; }
.slin-photo { width: 100%; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); margin-bottom: 20px; }
.slin-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.slin-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 4px; }
.slin-name-ruby { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.15em; color: var(--cream-dim); margin-bottom: 14px; display: block; }
.slin-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.slin-tag { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.06em; color: rgba(201,168,76,0.7); border: 1px solid rgba(201,168,76,0.2); padding: 4px 10px; }
.slin-h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--cream); line-height: 1.25; margin-bottom: 32px; }
.slin-h2 em { color: var(--gold); font-style: normal; }
.slin-p { font-size: 0.9rem; line-height: 2; color: var(--cream-dim); margin-bottom: 20px; }
.slin-sign { font-family: var(--font-serif); font-size: 2rem; font-style: italic; color: var(--gold); margin-top: 32px; display: block; }

/* ---- APT FREE price tag ---- */
.apt-price--free { font-family: var(--font-display); font-size: 1.4rem; color: #6fcf97; letter-spacing: 0.06em; }

/* ---- Mobile responsive — new sections ---- */
@media (max-width: 900px) {
  .slpos-compare,
  .slpos-seat { grid-template-columns: 1fr; }
  .slm-flow,
  .slf-flow-grid { grid-template-columns: 1fr 1fr; }
  .slm-bottom,
  .slf-bottom { grid-template-columns: 1fr; }
  .slshw-grid { grid-template-columns: 1fr; }
  .slshw-photo { min-height: 400px; }
  .slshw-text { padding: 64px 40px; }
  .slin-inner { grid-template-columns: 1fr; }
  .slin-photo { aspect-ratio: auto; height: 300px; }
}
@media (max-width: 600px) {
  .slpos-wrapper { padding: 0 24px; }
  .slpos-col { padding: 28px 24px; }
  .slpos-seat-left,
  .slpos-seat-right { padding: 28px 24px; }
  .slm-inner,
  .slf-inner { padding: 0 24px; }
  .slm-flow,
  .slf-flow-grid { grid-template-columns: 1fr; }
  .slm-step,
  .slf-step { padding: 28px 24px; }
  .slm-arrow { display: none; }
  .slm-photo img,
  .slf-photo img { height: 260px; }
  .slshw-text { padding: 48px 24px; }
  .slin-inner { padding: 0 24px; }
}