:root {
  --color-sand: #E8DCC4;
  --color-espresso: #2A1F18;
  --color-terracotta: #C8745C;
  --color-sage: #8A9A82;
  --color-clay: #A6563C;
  --color-cream: #F0E8D5;
  --color-graphite: #4A4035;
  --color-taupe: #B5A990;
  --color-leaf: #5A6B52;
  --color-espresso-soft: rgba(42, 31, 24, 0.08);
  --color-taupe-soft: rgba(181, 169, 144, 0.4);
  --color-cream-translucent: rgba(240, 232, 213, 0.78);
  --color-cream-strong: rgba(240, 232, 213, 0.92);
  --color-cream-mist: rgba(240, 232, 213, 0.85);
  --color-sand-translucent: rgba(232, 220, 196, 0.86);
  --color-sage-mist: rgba(138, 154, 130, 0.18);
  --color-sage-soft: rgba(138, 154, 130, 0.16);
  --color-espresso-faint: rgba(42, 31, 24, 0.06);
  --color-sand-faint: rgba(232, 220, 196, 0.18);
  --color-terracotta-soft: rgba(200, 116, 92, 0.18);
  --color-terracotta-faint: rgba(200, 116, 92, 0.2);
  --color-terracotta-glow: rgba(200, 116, 92, 0.28);
  --color-terracotta-deep: rgba(200, 116, 92, 0.4);
  --color-sage-tint: rgba(138, 154, 130, 0.1);
  --radius-capsule: 999px;
  --shadow-pad: 0 8px 24px rgba(42, 31, 24, 0.06);
  --shadow-float: 0 16px 40px rgba(200, 116, 92, 0.28);
  --shadow-card: 0 12px 32px rgba(42, 31, 24, 0.1);
  --shadow-pop: 0 20px 48px rgba(200, 116, 92, 0.22);
}

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

html {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-sand);
  color: var(--color-espresso);
  font-family: 'Inter Tight', 'Noto Sans JP', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
}

strong, p { color: inherit; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.font-display { font-family: 'Bodoni Moda', 'Shippori Mincho', serif; font-style: italic; font-optical-sizing: auto; }
.font-jp-display { font-family: 'Shippori Mincho', serif; }
.font-mono { font-family: 'IBM Plex Mono', monospace; }
.font-ui { font-family: 'Inter Tight', 'Noto Sans JP', sans-serif; }

.editorial-strip { letter-spacing: 0.22em; text-transform: uppercase; }
.editorial-strip-tight { letter-spacing: 0.08em; text-transform: uppercase; }
.editorial-strip-mid { letter-spacing: 0.1em; }
.editorial-strip-thin { letter-spacing: 0.04em; }

.sand-surface { background: var(--color-sand); color: var(--color-espresso); }
.cream-surface { background: var(--color-cream); color: var(--color-espresso); }
.espresso-surface { background: var(--color-espresso); color: var(--color-sand); }

.blob-field {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 72s ease-in-out infinite;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -18px); }
}

.blob-clay { background: var(--color-clay); opacity: 0.3; }
.blob-sage { background: var(--color-sage); opacity: 0.28; }
.blob-terracotta { background: var(--color-terracotta); opacity: 0.32; }
.blob-ochre { background: #D4A574; opacity: 0.26; }

.center-masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-sand-translucent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-espresso-soft);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.masthead-inner {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.masthead-nav-left, .masthead-nav-right {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead-nav-right { justify-content: flex-end; }

.masthead-link {
  position: relative;
  padding: 6px 0;
  color: var(--color-espresso);
  transition: color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.masthead-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 240ms cubic-bezier(0.16, 1, 0.3, 1), left 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.masthead-link:hover { color: var(--color-terracotta); }
.masthead-link:hover::after { width: 100%; left: 0; }

.masthead-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.masthead-logo-glyph {
  width: 44px;
  height: 44px;
  display: block;
}

.masthead-logo-domain {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 16px;
  color: var(--color-espresso);
  letter-spacing: 0.02em;
}

.masthead-logo-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-espresso);
  opacity: 0.65;
}

.masthead-divider {
  width: 1px;
  height: 28px;
  background: var(--color-taupe-soft);
}

.masthead-burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
}

.masthead-burger span {
  width: 22px;
  height: 2px;
  background: var(--color-espresso);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 320ms ease;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, var(--color-sand) 0%, var(--color-sand) 60%, var(--color-cream) 100%);
  z-index: 90;
  display: none;
  flex-direction: column;
  padding: 32px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 480ms cubic-bezier(0.65, 0, 0.35, 1), transform 480ms cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-overlay.is-open { display: flex; opacity: 1; transform: scale(1); }

.mobile-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-espresso-soft);
}

.mobile-overlay-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-espresso);
  border-radius: 50%;
  background: transparent;
  color: var(--color-espresso);
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
}

.mobile-overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 0;
}

.mobile-overlay-link {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 30px;
  color: var(--color-espresso);
  padding: 8px 0;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 64px;
  overflow: hidden;
}

.hero-marker {
  position: relative;
  z-index: 4;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
}

.hero-mono-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.hero-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(64px, 12vw, 86px);
  line-height: 0.92;
  color: var(--color-espresso);
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-divider {
  width: 200px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-terracotta);
  margin: 24px 0;
}

.hero-subline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--color-graphite);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-mono-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-sage);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 88px;
  border-radius: 44px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-float);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 320ms ease;
  white-space: nowrap;
  padding: 0 32px;
}

.hero-cta:hover { transform: translateY(-4px); box-shadow: 0 24px 56px var(--color-terracotta-deep); }

.hero-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-graphite);
  letter-spacing: 0.04em;
}

.hero-pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-sage);
  box-shadow: 0 0 0 0 rgba(138, 154, 130, 0.6);
  animation: pulse-ring 1800ms ease-out infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(138, 154, 130, 0.6); }
  100% { box-shadow: 0 0 0 18px rgba(138, 154, 130, 0); }
}

.hero-live {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 6;
  background: var(--color-cream-translucent);
  border-radius: 14px;
  padding: 8px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--color-graphite);
  letter-spacing: 0.04em;
}

.hero-stream {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display: flex;
  gap: 24px;
  overflow: hidden;
  overflow-x: hidden;
  padding: 12px 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.hero-stream-track {
  display: flex;
  gap: 24px;
  animation: hero-marquee 60s linear infinite;
  flex-shrink: 0;
}

.hero-stream:hover .hero-stream-track { animation-play-state: paused; }

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

.hero-stream-card {
  width: 280px;
  height: 360px;
  border-radius: 32px 48px 32px 48px;
  overflow: hidden;
  border: 1px solid var(--color-terracotta-faint);
  flex-shrink: 0;
  background: var(--color-cream);
  transform: rotate(-2deg);
  transition: transform 320ms ease;
}

.hero-stream-card:nth-child(odd) { transform: rotate(2deg); }
.hero-stream-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sticky-split {
  position: relative;
  padding: 120px 24px;
}

.sticky-split-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 64px;
  align-items: start;
}

.sticky-split-left {
  position: sticky;
  top: 140px;
}

.sticky-split-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 48px 64px 48px 64px;
  overflow: hidden;
  border: 1.5px solid var(--color-espresso);
  background: var(--color-cream);
  transition: transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 480ms ease, border-color 480ms ease;
}

.sticky-split-photo:hover {
  transform: scale(1.03) rotate(-1.5deg);
  border-color: var(--color-terracotta);
  box-shadow: 0 16px 32px var(--color-terracotta-soft);
}

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

.sticky-split-caption {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--color-espresso);
  margin-top: 20px;
}

.sticky-split-data {
  margin-top: 24px;
  background: var(--color-cream);
  border-radius: 24px;
  border: 1px solid var(--color-taupe);
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-graphite);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.sticky-split-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.capsule-block {
  background: var(--color-cream);
  border-radius: 24px;
  padding: 32px;
  color: var(--color-espresso);
  box-shadow: var(--shadow-pad);
}

.capsule-block-lead {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--color-graphite);
  line-height: 1.7;
  margin: 0;
}

.capsule-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--color-terracotta);
  line-height: 1.4;
  margin: 0;
  padding-left: 24px;
  border-left: 5px solid var(--color-terracotta);
  border-radius: 32px 48px 32px 48px;
}

.capsule-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-graphite);
  opacity: 0.8;
  line-height: 1.8;
  background: var(--color-sage-soft);
  border-radius: 20px;
  padding: 20px 24px;
}

.services-accordion {
  position: relative;
  background: var(--color-cream);
  padding: 120px 24px;
  overflow: hidden;
}

.services-accordion-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  align-items: start;
}

.services-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0;
}

.services-subline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--color-terracotta);
  line-height: 1.4;
}

.services-stack {
  grid-column: 1 / -1;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  position: relative;
  background: var(--color-cream-mist);
  border-radius: 32px 48px 32px 48px;
  border: 1px solid var(--color-taupe);
  box-shadow: var(--shadow-pad);
  overflow: hidden;
  transition: transform 580ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 480ms ease, z-index 0ms;
  z-index: 1;
}

.service-row.is-open {
  transform: scale(1.02);
  box-shadow: 0 16px 40px var(--color-terracotta-soft);
  z-index: 10;
}

.service-row-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  height: 96px;
  padding: 0 28px;
  cursor: pointer;
}

.service-row-marker {
  width: 64px;
  height: 72px;
  border-radius: 20px 32px 20px 32px;
  background: var(--color-sage);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
}

.service-row-titles h3 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--color-espresso);
  margin: 0;
}

.service-row-titles p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--color-sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0 0;
}

.service-row-blurb {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--color-graphite);
  max-width: 320px;
}

.service-row-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-espresso);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-row-toggle::before, .service-row-toggle::after {
  content: "";
  position: absolute;
  background: var(--color-terracotta);
  border-radius: 1px;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-row-toggle::before { width: 14px; height: 2px; }
.service-row-toggle::after { width: 2px; height: 14px; }

.service-row.is-open .service-row-toggle::after { transform: rotate(45deg); }

.service-row-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 580ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-row.is-open .service-row-body { max-height: 800px; }

.service-row-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 28px 28px;
}

.service-row-media {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-row-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-sage);
  line-height: 1.8;
}

.service-row-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--color-graphite);
  line-height: 1.7;
  margin: 0 0 16px;
}

.service-row-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--color-terracotta);
  border-radius: var(--radius-capsule);
  transition: background 320ms ease, color 320ms ease;
}

.service-row-link:hover { background: var(--color-terracotta); color: var(--color-cream); }

.process-timeline {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
}

.process-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.process-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0;
}

.process-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-graphite);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.process-rail {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 3px;
  background: repeating-linear-gradient(to right, var(--color-sage) 0 12px, transparent 12px 16px);
  opacity: 0.7;
  z-index: 0;
}

.process-node {
  position: relative;
  z-index: 1;
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-snap-align: center;
}

.process-capsule {
  width: 120px;
  height: 80px;
  border-radius: 40px;
  background: var(--color-cream);
  border: 2px solid var(--color-sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pad);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 320ms ease;
  padding: 8px;
}

.process-node.is-active .process-capsule { transform: scale(1.1); border-color: var(--color-terracotta); }

.process-capsule-icon {
  width: 32px;
  height: 32px;
  color: var(--color-sage);
}

.process-capsule-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: var(--color-terracotta);
  margin-top: 4px;
}

.process-node-title {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-espresso);
  margin: 16px 0 4px;
}

.process-node-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: var(--color-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.process-node-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: var(--color-graphite);
  line-height: 1.5;
  margin: 12px 0 0;
  background: var(--color-sage-soft);
  padding: 8px 12px;
  border-radius: 14px;
  max-width: 180px;
}

.advantages-flex {
  position: relative;
  background: var(--color-cream);
  padding: 120px 24px;
  overflow: hidden;
}

.advantages-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.advantages-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0;
}

.advantages-flex-row {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.advantage-card {
  flex: 1;
  position: relative;
  height: 280px;
  background: var(--color-cream-strong);
  border-radius: 32px 48px 32px 48px;
  border: 1.5px solid var(--color-sage);
  padding: 24px;
  transition: flex 420ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease, opacity 420ms ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantages-flex-row:hover .advantage-card { flex: 0.7; }
.advantages-flex-row .advantage-card:hover { flex: 1.55; transform: translateY(-4px); border-color: var(--color-terracotta); box-shadow: 0 16px 40px var(--color-terracotta-soft); }

.advantage-card-watermark {
  position: absolute;
  right: 16px;
  bottom: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 64px;
  color: var(--color-terracotta);
  opacity: 0.14;
  line-height: 1;
}

.advantage-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-sage);
}

.advantage-card-title {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-espresso);
  margin: 16px 0 8px;
  line-height: 1.2;
}

.advantage-card-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--color-graphite);
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

.horizontal-shift {
  position: relative;
  background: var(--color-sand);
  padding: 80px 0;
}


.horizontal-shift-sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}


.horizontal-shift-header {
  max-width: 1320px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 64px;
  align-items: end;
}

.horizontal-shift-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0;
}

.horizontal-shift-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--color-sage);
  line-height: 1.4;
}

.horizontal-shift-progress {
  display: none;
}

.horizontal-shift-progress-bar {
  height: 100%;
  width: 8.33%;
  background: var(--color-terracotta);
  border-radius: 2px;
  transition: width 200ms linear;
}

.horizontal-shift-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 64px;
  max-width: 1320px;
  margin: 0 auto;
}


.horizontal-shift-card {
  height: 560px;
  background: var(--color-cream-strong);
  border-radius: 32px 48px 32px 48px;
  border: 1px solid var(--color-espresso);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 420ms ease, box-shadow 420ms ease, z-index 0ms;
  position: relative;
  z-index: 1;
}


.horizontal-shift-card:hover { transform: scale(1.04); box-shadow: var(--shadow-pop); z-index: 10; }

.shift-marker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shift-photo {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-sand);
}

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

.shift-title {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-espresso);
  margin: 0;
  line-height: 1.2;
}

.shift-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--color-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.shift-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-graphite);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

.team-canvas-section {
  position: relative;
  background: var(--color-cream);
  padding: 120px 24px;
  overflow: hidden;
}

.team-canvas-header {
  max-width: 1320px;
  margin: 0 auto 24px;
  text-align: center;
}

.team-canvas-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0;
}

.team-canvas-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.team-canvas-stage {
  position: relative;
  max-width: 1320px;
  margin: 56px auto 0;
  height: 800px;
  background: var(--color-cream);
  border-radius: 32px;
  border: 1px dashed var(--color-taupe);
  overflow: hidden;
  overflow-x: hidden;
  /* max-width: 100vw; */
}


.team-card {
  position: absolute;
  background: var(--color-cream-strong);
  border: 1.5px solid var(--color-sage);
  border-radius: 32px 48px 32px 48px;
  box-shadow: var(--shadow-pad);
  cursor: grab;
  transition: box-shadow 320ms ease, transform 320ms ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card.is-dragging { cursor: grabbing; z-index: 50; box-shadow: var(--shadow-pop); transform: scale(1.02); }

.team-card-photo {
  height: 60%;
  overflow: hidden;
  background: var(--color-sand);
}

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

.team-card-body { padding: 14px 16px; }

.team-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-card-name-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: var(--color-espresso);
  margin: 4px 0 2px;
}

.team-card-name-en {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--color-graphite);
  margin: 0 0 6px;
}

.team-card-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-sage);
  font-style: italic;
  letter-spacing: 0.04em;
}

.faq-stack {
  position: relative;
  padding: 120px 24px;
  background: var(--color-sand);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}


.faq-header {
  max-width: 1320px;
  margin: 0 auto 56px;
}

.faq-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0;
}

.faq-stack-list {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.faq-card {
  background: var(--color-cream-strong);
  border: 1.5px solid var(--color-sage);
  border-radius: 32px 48px 32px 48px;
  padding: 20px 28px;
  box-shadow: var(--shadow-pad);
  cursor: pointer;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 420ms ease;
}

.faq-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.faq-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  color: var(--color-terracotta);
}

.faq-card-q {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-espresso);
  margin: 0;
}

.faq-card-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-espresso);
  background: transparent;
  position: relative;
}

.faq-card-toggle::before, .faq-card-toggle::after {
  content: "";
  position: absolute;
  background: var(--color-terracotta);
  border-radius: 1px;
  left: 50%;
  top: 50%;
  transition: transform 320ms ease;
}

.faq-card-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-card-toggle::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }

.faq-card.is-open .faq-card-toggle::after { transform: translate(-50%, -50%) rotate(45deg); }

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 460ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card.is-open .faq-card-body { max-height: 400px; }

.faq-card-answer {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--color-graphite);
  line-height: 1.7;
  background: var(--color-sage-soft);
  border-left: 5px solid var(--color-terracotta);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 16px;
}

.reviews-coverflow {
  position: relative;
  background: var(--color-cream);
  padding: 120px 24px;
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}


.reviews-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0 0 56px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-stage {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  height: 640px;
  perspective: 1400px;
  overflow-x: hidden;
  max-width: 100vw;
}


.reviews-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card {
  position: absolute;
  width: 480px;
  height: 560px;
  background: var(--color-cream-strong);
  border: 1.5px solid var(--color-sage);
  border-radius: 32px 48px 32px 48px;
  box-shadow: var(--shadow-pad);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 600ms ease, z-index 0ms;
  cursor: pointer;
  left: 50%;
  top: 50%;
  margin-left: -240px;
  margin-top: -280px;
}

.review-card-media {
  flex: 0 0 55%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }

.review-card-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.review-card-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--color-espresso);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.review-card-body {
  background: var(--color-sage-soft);
  border-radius: 16px;
  padding: 16px;
}

.review-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--color-espresso);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-espresso);
  margin: 4px 0 2px;
}

.review-card-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-graphite);
  opacity: 0.7;
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-cream-strong);
  border: 1.5px solid var(--color-sage);
  color: var(--color-terracotta);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 12px var(--color-espresso-faint);
}

.review-nav:hover { border-color: var(--color-terracotta); border-width: 2.5px; }
.review-nav.prev { left: 24px; }
.review-nav.next { right: 24px; }

.contacts-bento {
  position: relative;
  background: var(--color-sand);
  padding: 120px 24px;
  overflow: hidden;
}

.contacts-headline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0 0 56px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.contacts-bento-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.contacts-bento-card {
  background: var(--color-cream-strong);
  border: 1.5px solid var(--color-sage);
  border-radius: 32px 48px 32px 48px;
  padding: 32px;
  box-shadow: var(--shadow-pad);
  transition: transform 320ms ease, box-shadow 320ms ease, z-index 0ms;
  position: relative;
  z-index: 1;
}

.contacts-bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); z-index: 10; }

.contacts-bento-card-main { grid-row: span 2; }

.contacts-bento-h {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-espresso);
  margin: 0 0 24px;
  line-height: 1.1;
}

.contacts-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-taupe);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--color-espresso);
}

.contacts-channel:last-of-type { border-bottom: none; }

.contacts-channel-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-terracotta);
}

.contacts-channel-label { font-weight: 500; }
.contacts-channel-value { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--color-graphite); }

.contacts-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 88px;
  border-radius: 44px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 32px var(--color-terracotta-glow);
  margin-top: 24px;
  transition: transform 320ms ease, box-shadow 320ms ease;
  white-space: nowrap;
  padding: 0 32px;
}

.contacts-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--color-terracotta-deep); }

.contacts-map-card { display: flex; flex-direction: column; gap: 16px; }

.contacts-map {
  width: 100%;
  height: 200px;
  border-radius: 24px;
  background: var(--color-cream);
  border: 1px solid var(--color-taupe);
  position: relative;
  overflow: hidden;
}

.contacts-map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--color-taupe-soft) 1px, transparent 1px), linear-gradient(90deg, var(--color-taupe-soft) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.contacts-map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow: 0 0 0 0 rgba(200, 116, 92, 0.5);
  animation: pulse-ring 2400ms ease-out infinite;
}

.contacts-arrival-grid {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-graphite);
  background: var(--color-sage-soft);
  border-radius: 20px;
  padding: 16px 20px;
  line-height: 1.9;
}

.contacts-arrival-row { display: flex; justify-content: space-between; }

.contacts-license {
  grid-column: 1 / -1;
  background: var(--color-terracotta-soft);
  border-radius: 20px;
  padding: 16px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-graphite);
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  max-width: 380px;
  background: var(--color-cream);
  border: 1.5px solid var(--color-sage);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px var(--color-espresso-faint);
}

.cookie-banner h4 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--color-espresso);
  margin: 0 0 8px;
}

.cookie-banner p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: var(--color-graphite);
  line-height: 1.5;
  margin: 0 0 16px;
}

.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.cookie-btn {
  flex: 1;
  min-width: 100px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-espresso);
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-espresso);
  cursor: pointer;
  white-space: nowrap;
  padding: 0 16px;
  transition: background 240ms ease, color 240ms ease;
}

.cookie-btn.primary { background: var(--color-terracotta); color: var(--color-cream); border-color: var(--color-terracotta); }
.cookie-btn:hover { background: var(--color-espresso); color: var(--color-cream); }
.cookie-btn.primary:hover { background: var(--color-clay); border-color: var(--color-clay); }

.cookie-banner.is-hidden { display: none; }

.editorial-footer {
  background: var(--color-espresso);
  color: var(--color-sand);
  padding: 56px 24px 24px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mark {
  width: 56px;
  height: 56px;
  display: block;
}

.footer-logo-domain {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-sand);
}

.footer-logo-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  color: var(--color-sand);
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.footer-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-sand);
  opacity: 0.8;
  line-height: 1.8;
}

.footer-meta-block {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-sand);
  opacity: 0.8;
  line-height: 1.8;
}

.footer-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  color: var(--color-sand);
  opacity: 0.6;
  line-height: 1.6;
  text-align: right;
}

.footer-divider {
  max-width: 1320px;
  margin: 32px auto 16px;
  border: none;
  border-top: 1px dashed var(--color-sand-faint);
}

.footer-tagline-bottom {
  max-width: 1320px;
  margin: 0 auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--color-sand);
  opacity: 0.5;
  text-align: center;
  letter-spacing: 0.08em;
}

.footer-legal-row {
  max-width: 1320px;
  margin: 24px auto 0;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-sand);
  opacity: 0.7;
}

.footer-legal-row a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-row a:hover { color: var(--color-terracotta); }

.compact-hero {
  padding: 200px 24px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.compact-hero-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.compact-hero-h1 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  color: var(--color-espresso);
  margin: 0 0 24px;
  max-width: 920px;
}

.compact-hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--color-graphite);
  line-height: 1.5;
  max-width: 720px;
  margin: 0;
}

.section-pad {
  padding: 80px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.text-block {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--color-graphite);
  line-height: 1.7;
}

.text-block p { margin: 0 0 16px; }
.text-block h2 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  color: var(--color-espresso);
  margin: 0 0 24px;
  line-height: 1.2;
}
.text-block h3 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--color-terracotta);
  margin: 24px 0 8px;
}

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

.showcase-card {
  background: var(--color-cream);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-taupe);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.showcase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }

.showcase-card-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--color-sand);
}

.showcase-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 480ms ease; }

.showcase-card:hover .showcase-card-photo img { transform: scale(1.05); }

.showcase-card-body { padding: 20px; }

.showcase-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-card-title {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-espresso);
  margin: 8px 0;
  line-height: 1.3;
}

.showcase-card-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-graphite);
  opacity: 0.7;
  line-height: 1.7;
}

.service-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.service-list-card {
  background: var(--color-cream);
  border: 1.5px solid var(--color-sage);
  border-radius: 32px 48px 32px 48px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
  position: relative;
  overflow: hidden;
}

.service-list-card:hover { transform: translateY(-4px); border-color: var(--color-terracotta); box-shadow: var(--shadow-pop); }

.service-list-card-photo {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-sand);
}

.service-list-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-list-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-espresso);
  margin: 0;
}

.service-list-card-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--color-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list-card-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--color-graphite);
  line-height: 1.6;
}

.service-list-card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
}

.service-list-card-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--color-terracotta);
  border-radius: 999px;
  transition: background 320ms ease, color 320ms ease;
  white-space: nowrap;
}

.service-list-card-link:hover { background: var(--color-terracotta); color: var(--color-cream); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

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

.contact-form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--color-espresso);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-taupe);
  border-radius: 12px;
  background: var(--color-cream);
  color: var(--color-espresso);
  padding: 0 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  transition: border-color 240ms ease;
}

.contact-form textarea { height: 120px; padding: 16px; resize: vertical; }

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

.contact-form button[type="submit"] {
  grid-column: 1 / -1;
  height: 64px;
  border-radius: 32px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  transition: background 240ms ease;
}

.contact-form button[type="submit"]:hover { background: var(--color-clay); }

.form-success {
  background: var(--color-sage-soft);
  border: 1.5px solid var(--color-sage);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  display: none;
}

.form-success.is-visible { display: block; }

.form-success h3 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--color-espresso);
  margin: 0 0 8px;
}

.form-success p { color: var(--color-graphite); margin: 0; }

.legal-page {
  padding: 200px 24px 80px;
  max-width: 920px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--color-espresso);
  margin: 0 0 24px;
}

.legal-page h2 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--color-terracotta);
  margin: 40px 0 12px;
}

.legal-page p, .legal-page li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--color-graphite);
  line-height: 1.7;
}

.legal-page ul { padding-left: 24px; }

.thanks-card {
  background: var(--color-cream);
  border: 1.5px solid var(--color-sage);
  border-radius: 32px 48px 32px 48px;
  padding: 64px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.thanks-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--color-terracotta);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.thanks-h1 {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--color-espresso);
  margin: 16px 0;
  line-height: 1.1;
}

.thanks-body {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--color-graphite);
  line-height: 1.5;
  margin: 0 0 32px;
}

.thanks-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.thanks-back:hover { background: var(--color-clay); }

.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 80;
  height: 56px;
  border-radius: 28px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
}

.process-mobile-step {
  display: none;
  background: var(--color-cream);
  border-radius: 24px;
  border: 1.5px solid var(--color-sage);
  padding: 16px;
  margin-bottom: 12px;
}

.process-mobile-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--color-terracotta);
  margin-bottom: 6px;
}

.process-mobile-title {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-espresso);
  margin: 0 0 4px;
}

.process-mobile-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--color-graphite);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-marker { grid-template-columns: 1fr; gap: 32px; }
  .sticky-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-split-left { position: relative; top: 0; }
  .services-accordion-inner { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 24px; }
  .advantages-flex-row { flex-wrap: wrap; }
  .advantage-card { flex: 1 1 calc(50% - 10px); }
  .advantages-flex-row:hover .advantage-card { flex: 1 1 calc(50% - 10px); }
  .advantages-flex-row .advantage-card:hover { flex: 1 1 100%; }
  .horizontal-shift-header { grid-template-columns: 1fr; gap: 24px; }
  .horizontal-shift-card { flex: 0 0 360px; height: 480px; }
  .team-canvas-stage { height: auto; min-height: 600px; }
  .contacts-bento-grid { grid-template-columns: 1fr; }
  .contacts-bento-card-main { grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-tagline { text-align: left; }
  .service-row-body-inner { grid-template-columns: 1fr; }
  .service-list-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .split-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .center-masthead { height: 64px; padding: 0 16px; overflow-x: hidden; }
  .masthead-inner { grid-template-columns: auto 1fr auto; overflow-x: hidden; }
  .masthead-nav-left, .masthead-nav-right, .masthead-divider { display: none; }
  .masthead-burger { display: flex; }
  .masthead-logo-glyph { width: 32px; height: 32px; }
  .masthead-logo-domain { font-size: 16px; line-height: 5px; }
  .masthead-logo-jp { font-size: 10px; }
  .hero-stage { padding: 96px 16px 32px; overflow-x: hidden; }
  .hero-cta { width: 100%; max-width: 320px; height: 72px; }
  .hero-stream { overflow-x: hidden; }
  .hero-stream-card { width: 240px; height: 300px; flex-shrink: 0; }
  .sticky-split, .services-accordion, .process-timeline, .advantages-flex, .team-canvas-section, .faq-stack, .reviews-coverflow, .contacts-bento { padding: 64px 16px; overflow-x: hidden; }
  .sticky-split-photo { aspect-ratio: 3/4; }
  .process-rail { display: none; }
  .process-mobile-step { display: block; }
  .advantage-card { flex: 1 1 100%; }
  .advantages-flex-row:hover .advantage-card, .advantages-flex-row .advantage-card:hover { flex: 1 1 100%; }
  .horizontal-shift { padding: 48px 0; }
  .horizontal-shift-sticky { padding: 0 16px; }
  .horizontal-shift-track { grid-template-columns: 1fr; padding: 0 16px; }
  .horizontal-shift-card { height: 480px; }
  .horizontal-shift-progress { display: none; }
  .reviews-stage { height: 620px; overflow-x: hidden; }
  .review-card { width: 90%; margin-left: -45%; max-width: 90vw; }
  .review-card.is-side { display: none; }
  .contact-form { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .faq-card { margin-left: 0 !important; margin-top: 0 !important; }
  .compact-hero { padding: 120px 16px 48px; overflow-x: hidden; }
  .legal-page { padding: 120px 16px 48px; overflow-x: hidden; }
  .team-canvas-stage { height: auto; min-height: 800px; overflow-x: hidden; }
  .team-card { position: relative !important; width: 100% !important; height: auto !important; margin-bottom: 16px; left: 0 !important; top: 0 !important; }
  .team-card-photo { height: 220px; }
  .sticky-cta-mobile { display: flex; }
  .editorial-footer { padding: 32px 16px 16px; overflow-x: hidden; }
  .footer-inner { gap: 16px; overflow-x: hidden; }
  .cookie-banner { left: 16px; right: 16px; bottom: 80px; max-width: none; }
  .hero-live { display: none; }
  .cookie-banner { left: 16px; right: 16px; bottom: 80px; max-width: none; }
}
