:root {
  --ruby: #B02A40;
  --ruby-deep: #8E1F32;
  --ruby-glow: rgba(176, 42, 64, 0.18);
  --ink: #1A1416;
  --ink-soft: #2C2C2C;
  --taupe: #9C9296;
  --paper: #FFFFFF;
  --bone: #FBF9F7;
  --night: #140D10;
  --shadow-float: 0px 24px 48px rgba(28, 12, 18, 0.12), 0px 8px 20px rgba(28, 12, 18, 0.06), 0px 2px 4px rgba(28, 12, 18, 0.04);
  --shadow-rise: 0px 32px 64px rgba(176, 42, 64, 0.18), 0px 12px 24px rgba(28, 12, 18, 0.08);
  --hair: rgba(44, 44, 44, 0.25);
  --serif-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-jp: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --sans: 'Inter', 'Helvetica Neue', 'Hiragino Sans', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

strong, p { color: inherit; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.kinetic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--paper);
  max-width: 100vw;
}
.kinetic-bg .kinetic-string {
  position: absolute;
  white-space: nowrap;
  font-family: var(--serif-en);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  opacity: 0.06;
  will-change: transform;
}
.kinetic-bg .kinetic-seduction {
  font-size: 22vw;
  color: var(--ruby);
  top: 12%;
  left: -10%;
  animation: driftA 38s linear infinite;
}
.kinetic-bg .kinetic-paint {
  font-size: 19vw;
  font-family: var(--serif-jp);
  color: var(--ink);
  bottom: 8%;
  right: -15%;
  animation: driftB 52s linear infinite;
}
@keyframes driftA {
  0% { transform: translate(0, 0) rotate(-8deg); }
  100% { transform: translate(40vw, 20vh) rotate(-8deg); }
}
@keyframes driftB {
  0% { transform: translate(0, 0) rotate(6deg); }
  100% { transform: translate(-30vw, -15vh) rotate(6deg); }
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-left: 240px;
}

.dock-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(44, 44, 44, 0.15);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 60;
  transition: width 320ms ease;
}

.dock-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.dock-mark {
  width: 46px;
  height: 48px;
  position: relative;
}
.dock-mark svg { width: 100%; height: 100%; }
.dock-domain {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.65px;
  color: var(--ink);
  line-height: 1;
}
.dock-name {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 10px;
  color: var(--ruby);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.dock-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.dock-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--taupe);
  background: var(--paper);
  border: 1px solid var(--hair);
  box-shadow: 0 4px 12px rgba(28, 12, 18, 0.05);
  transition: all 220ms ease;
  white-space: nowrap;
}
.dock-link:hover, .dock-link.is-active {
  color: var(--ruby);
  border-color: var(--ruby);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rise);
}
.dock-link.is-active::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ruby);
  flex-shrink: 0;
}
.dock-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.dock-foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4px;
  color: var(--taupe);
  line-height: 1.6;
  border-top: 1px solid var(--hair);
  padding-top: 18px;
}
.dock-foot .ruby-line {
  width: 28px;
  height: 2px;
  background: var(--ruby);
  margin-bottom: 8px;
}

.topbar {
  display: none;
}

.burger-pad {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 70;
  width: 36px;
  height: 36px;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: var(--shadow-float);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--hair);
}
.burger-pad span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ruby);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 80;
  transform: translateX(-100%);
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif-en);
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
}
.mobile-menu a::before {
  content: "❀";
  color: var(--ruby);
  font-size: 18px;
}
.mobile-menu .close-x {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ruby);
  font-family: var(--mono);
  border: 1px solid var(--ruby);
}

main {
  position: relative;
  z-index: 1;
}

.hero-stage {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  overflow: visible;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  box-shadow: var(--shadow-float);
  padding: 26px 28px;
  position: absolute;
  transition: all 380ms ease;
}
.hero-card:hover {
  border-color: var(--ruby);
  box-shadow: var(--shadow-rise);
  transform: translateY(-8px);
  z-index: 50;
}
.hero-card-tl {
  top: 18%;
  left: 8%;
  width: 260px;
}
.hero-card-tr {
  top: 22%;
  right: 12%;
  width: 220px;
  z-index: 3;
}
.hero-card-mid {
  position: relative;
  z-index: 5;
  width: 560px;
  max-width: 90%;
  padding: 56px 48px;
  text-align: center;
  border: 1.5px solid var(--ink);
}
.hero-card-mid:hover {
  border-color: var(--ruby);
  border-width: 2px;
}
.hero-mono-tag {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2.8px;
  color: var(--ruby);
  margin-bottom: 14px;
  display: block;
}
.hero-h1 {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 18px;
  animation: fogRise 700ms ease-out;
}
.hero-h1 .ruby-u {
  color: var(--ruby);
  border-bottom: 2px solid var(--ruby);
  padding-bottom: 4px;
  font-size: 1.1em;
}
.hero-sub-jp {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-sub-jp::before, .hero-sub-jp::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ruby);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--ruby);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: all 260ms ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink), var(--shadow-rise);
  background: var(--ruby-deep);
}
.hero-mini {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--taupe);
  line-height: 1.7;
}
.hero-mini strong { color: var(--ink); }
.hero-mini .ruby-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ruby);
  margin-right: 6px;
}

.hero-specs {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 4;
}
.hero-spec {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-spec .num {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 22px;
  color: var(--ruby);
}

@keyframes fogRise {
  from { filter: blur(5px); opacity: 0; }
  to { filter: blur(0); opacity: 1; }
}

.section-shell {
  padding: 120px 80px;
  position: relative;
  overflow: visible;
}
.section-shell.compact { padding: 80px 80px; }
.section-shell.night {
  background: var(--night);
  color: var(--paper);
}
.section-shell.night p, .section-shell.night strong { color: var(--paper); }
.section-shell.night .section-eyebrow { color: var(--ruby); }
.section-shell.night .section-h2 { color: var(--paper); }
.section-shell.night .section-h2 .ruby-u { color: var(--ruby); }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ruby);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ruby);
}
.section-h2 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 900px;
}
.section-h2 .ruby-u { color: var(--ruby); border-bottom: 2px solid var(--ruby); }
.section-h2 .ruby-diamond {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--ruby);
  transform: rotate(45deg);
  vertical-align: middle;
  margin: 0 8px 6px;
}
.section-lead {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-lead .drop-cap {
  float: left;
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 60px;
  line-height: 0.9;
  color: var(--ruby);
  margin: 4px 10px 0 0;
}

.magnolia {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 60px 0;
  overflow: hidden;
}
.magnolia::before, .magnolia::after {
  content: "";
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--ruby);
  border-radius: 50% 0 50% 0;
  transform: rotate(45deg);
  position: absolute;
  animation: bloom 1.4s ease-out forwards;
  opacity: 0;
}
.magnolia::before { left: 30%; }
.magnolia::after { right: 30%; transform: rotate(-135deg); animation-delay: 0.15s; }
@keyframes bloom {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  60% { transform: scale(1.4) rotate(45deg); opacity: 1; }
  100% { transform: scale(12) rotate(45deg); opacity: 0; }
}

.float-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow-float);
  position: relative;
  transition: all 320ms ease;
  overflow: visible;
}
.float-card:hover {
  border-color: var(--ruby);
  border-width: 2px;
  padding: 35px 31px;
  box-shadow: var(--shadow-rise);
  transform: translateY(-8px);
  z-index: 10;
}
.float-card .card-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ruby);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.float-card h3 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.float-card h3 .ruby-u { color: var(--ruby); }
.float-card .jp {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--ruby);
  margin-bottom: 14px;
  display: block;
}
.float-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}
.float-card .price {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 32px;
  color: var(--ruby);
  display: block;
  margin-top: 14px;
  border-top: 1px solid var(--hair);
  padding-top: 14px;
}
.float-card .price small {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--taupe);
  font-weight: 400;
  margin-left: 6px;
}

.services-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}
.service-row {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  transition: all 360ms ease;
  position: relative;
}
.service-row:hover, .service-row.is-open {
  border-color: var(--ruby);
  border-width: 2px;
  margin: 0 -1px;
  box-shadow: var(--shadow-rise);
  z-index: 20;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}
.service-num {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 42px;
  color: var(--ruby);
  line-height: 1;
  width: 60px;
  flex-shrink: 0;
}
.service-title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  flex-grow: 1;
}
.service-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--taupe);
  text-transform: uppercase;
}
.service-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ruby);
  transition: transform 360ms ease;
  flex-shrink: 0;
}
.service-row.is-open .service-toggle { transform: rotate(45deg); background: var(--ruby); color: var(--paper); border-color: var(--ruby); }
.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms ease;
}
.service-row.is-open .service-body { max-height: 1000px; }
.service-inner {
  padding: 0 28px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.service-text p { font-size: 15px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 14px; }
.service-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}
.service-meta div {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--taupe);
  letter-spacing: 0.5px;
}
.service-meta div strong {
  display: block;
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--ruby);
  margin-top: 4px;
}
.service-img {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-float);
  aspect-ratio: 4/3;
  background: var(--bone);
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  white-space: nowrap;
  transition: all 240ms ease;
  border: 1.5px solid var(--ink);
}
.service-cta:hover { background: var(--ruby); border-color: var(--ruby); }

.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.benefit-cell {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: var(--shadow-float);
  transition: all 380ms ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-grow: 1;
}
.benefit-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--ruby-glow) 1px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}
.benefit-cell:hover::before, .benefit-cell.is-open::before { opacity: 0.5; }
.benefit-cell:hover, .benefit-cell.is-open {
  flex-grow: 2.2;
  border-color: var(--ruby);
  border-width: 2px;
  padding: 31px 23px;
  box-shadow: var(--shadow-rise);
}
.benefit-cell .b-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--ruby);
}
.benefit-cell .b-icon svg { width: 24px; height: 24px; }
.benefit-cell h4 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.benefit-cell .b-jp {
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ruby);
  margin-bottom: 12px;
  display: block;
}
.benefit-cell p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms ease;
}
.benefit-cell:hover p, .benefit-cell.is-open p { max-height: 300px; margin-top: 6px; }

.marquee-shell {
  overflow: hidden;
  padding: 60px 0;
  background: var(--bone);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.marquee-cell {
  font-family: var(--serif-en);
  font-weight: 700;
  font-style: italic;
  font-size: 52px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.marquee-cell.red { color: var(--ruby); }
.marquee-cell .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ruby);
  display: inline-block;
}
.marquee-shell:hover .marquee-track { animation-duration: 220s; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.split-stage {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 0;
  align-items: start;
}
.split-sticky {
  position: sticky;
  top: 60px;
  padding: 0 32px 32px 0;
}
.split-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-float);
  aspect-ratio: 3/4;
  position: relative;
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); }
.split-photo::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--ruby);
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
}
.split-photo:hover::after { opacity: 0.6; }
.split-photo:hover { box-shadow: var(--shadow-rise); border-color: var(--ruby); }
.split-content { padding: 0 0 0 48px; }

.timeline {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tl-item {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 260ms ease;
}
.tl-item:hover { border-color: var(--ruby); transform: translateX(6px); box-shadow: var(--shadow-rise); }
.tl-year {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 42px;
  color: var(--ruby);
  line-height: 1;
  width: 90px;
  flex-shrink: 0;
}
.tl-text { flex-grow: 1; }
.tl-text strong {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.tl-text span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.4px;
}

.team-list { display: flex; flex-direction: column; gap: 12px; }
.team-row {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-float);
  transition: all 280ms ease;
  cursor: pointer;
  position: relative;
}
.team-row:hover { border-color: var(--ruby); box-shadow: var(--shadow-rise); transform: translateY(-4px); }
.team-no {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 28px;
  color: var(--ruby);
  width: 50px;
  flex-shrink: 0;
}
.team-name {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  flex-grow: 1;
}
.team-name .romaji {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--taupe);
  display: block;
  letter-spacing: 0.6px;
  margin-top: 4px;
}
.team-role {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.5px;
  text-align: right;
  flex-shrink: 0;
}
.team-photo {
  position: absolute;
  right: 220px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  width: 180px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--ruby);
  box-shadow: var(--shadow-rise);
  opacity: 0;
  pointer-events: none;
  transition: all 320ms ease;
  background: var(--bone);
  z-index: 15;
}
.team-row:hover .team-photo { opacity: 1; transform: translateY(-50%) translateX(0); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.85) contrast(1.1); }

.reviews-coverflow {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  overflow: hidden;
}
.review-card {
  position: absolute;
  width: 420px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-float);
  transition: all 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.review-card.is-center {
  z-index: 20;
  border-color: var(--ruby);
  border-width: 2px;
  padding: 31px 27px;
  box-shadow: var(--shadow-rise);
  transform: translateX(0) scale(1) rotateY(0);
  opacity: 1;
}
.review-card.is-left {
  z-index: 10;
  transform: translateX(-340px) scale(0.85) rotateY(28deg);
  opacity: 0.5;
}
.review-card.is-right {
  z-index: 10;
  transform: translateX(340px) scale(0.85) rotateY(-28deg);
  opacity: 0.5;
}
.review-card.is-far {
  opacity: 0;
  pointer-events: none;
}
.review-quote {
  font-family: var(--serif-en);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
  position: relative;
  padding-top: 18px;
}
.review-quote::before {
  content: "❝";
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: 48px;
  color: var(--ruby);
  line-height: 1;
  font-family: var(--serif-en);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--ruby);
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta strong {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: block;
}
.review-meta span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--taupe);
  letter-spacing: 0.5px;
}
.review-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.review-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ruby);
  color: var(--ruby);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 240ms ease;
  box-shadow: var(--shadow-float);
}
.review-nav button:hover { background: var(--ruby); color: var(--paper); transform: translateY(-2px); }

.contact-stage {
  background: var(--night);
  padding: 120px 80px;
  position: relative;
  color: var(--paper);
}
.contact-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(176, 42, 64, 0.15), transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-info { color: var(--paper); }
.contact-info .section-eyebrow { color: var(--ruby); }
.contact-info h2 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 66px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--paper);
}
.contact-info h2 .ruby-u { color: var(--ruby); }
.contact-block { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.contact-block .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ruby);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.contact-block .val {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 30px;
  color: var(--paper);
  display: block;
  line-height: 1.2;
}
.contact-block .val.mono {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 18px;
  color: var(--ruby);
}
.contact-block .val.body { font-family: var(--sans); font-size: 16px; color: var(--taupe); line-height: 1.6; }

.contact-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  border: 2px solid var(--ruby);
  padding: 44px 40px;
  box-shadow: var(--shadow-rise);
}
.contact-form h3 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form .jp-title {
  font-family: var(--serif-jp);
  font-size: 14px;
  color: var(--ruby);
  margin-bottom: 26px;
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--taupe);
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ruby);
  box-shadow: 0 0 0 3px var(--ruby-glow);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ruby);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  margin-top: 14px;
  white-space: nowrap;
  transition: all 260ms ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.form-submit:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink), var(--shadow-rise); background: var(--ruby-deep); }

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  max-width: 360px;
  background: var(--paper);
  border: 1.5px solid var(--ruby);
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: var(--shadow-rise);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}
.cookie-banner strong { color: var(--ruby); display: block; margin-bottom: 6px; font-family: var(--serif-en); font-size: 16px; }
.cookie-banner p { margin-bottom: 12px; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner button {
  padding: 8px 14px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 200ms ease;
}
.cookie-banner .cookie-accept { background: var(--ruby); color: var(--paper); border: 1px solid var(--ink); }
.cookie-banner .cookie-accept:hover { background: var(--ruby-deep); }
.cookie-banner .cookie-decline { background: var(--paper); color: var(--ink); border: 1px solid var(--hair); }
.cookie-banner .cookie-decline:hover { border-color: var(--ruby); color: var(--ruby); }

.site-footer {
  background: var(--night);
  color: var(--paper);
  padding: 60px 80px 30px;
  border-top: 2px solid var(--ruby);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 12px;
  border-top: 2px solid var(--ruby);
  border-right: 2px solid var(--ruby);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .ft-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .ft-mark span:first-child {
  width: 32px;
  height: 32px;
  background: var(--ruby);
  color: var(--paper);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-en);
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
}
.footer-brand .ft-mark span:last-child {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--paper);
  letter-spacing: 0.5px;
}
.footer-brand p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--taupe);
  max-width: 320px;
  margin-bottom: 14px;
}
.footer-brand .ft-jp { font-family: var(--serif-jp); font-size: 12px; color: var(--ruby); }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ruby);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--paper);
  line-height: 1.9;
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--ruby); }
.footer-col address { font-style: normal; font-size: 13px; color: var(--taupe); line-height: 1.7; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--taupe);
  letter-spacing: 0.4px;
}
.footer-bottom p .en { font-family: var(--mono); color: var(--paper); }

.compact-hero {
  min-height: auto;
  padding: 120px 80px 60px;
  position: relative;
}
.compact-hero .section-h2 { font-size: clamp(36px, 4.8vw, 64px); }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--ruby); }
.breadcrumb span { color: var(--taupe); }

.thanks-card {
  background: var(--paper);
  border: 1.5px solid var(--ruby);
  border-radius: 8px;
  padding: 70px 60px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-rise);
}
.thanks-card .check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ruby);
  color: var(--paper);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-rise);
}
.thanks-card h1 {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 56px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.05;
}
.thanks-card .jp-thanks {
  font-family: var(--serif-jp);
  font-size: 16px;
  color: var(--ruby);
  margin-bottom: 22px;
  display: block;
}
.thanks-card p { font-size: 16px; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.9; }
.thanks-card .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.thanks-card .back-link:hover { background: var(--ruby); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.process-cell {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow-float);
  position: relative;
  transition: all 320ms ease;
}
.process-cell:hover { border-color: var(--ruby); border-width: 2px; padding: 27px 23px; transform: translateY(-6px); box-shadow: var(--shadow-rise); z-index: 5; }
.process-cell .p-num {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 48px;
  color: var(--ruby);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.process-cell h4 {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}
.process-cell p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 32px auto 0; }
.faq-row {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 22px 26px;
  box-shadow: var(--shadow-float);
  transition: all 320ms ease;
  cursor: pointer;
}
.faq-row.is-open { border-left-color: var(--ruby); border-color: var(--ruby); box-shadow: var(--shadow-rise); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.faq-q .marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ruby);
  color: var(--ruby);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  flex-shrink: 0;
  transition: all 280ms ease;
}
.faq-row.is-open .marker { background: var(--ruby); color: var(--paper); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms ease;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.faq-row.is-open .faq-a { max-height: 400px; padding-top: 14px; margin-top: 12px; border-top: 1px solid var(--hair); }

.legal-stage { padding: 120px 80px; max-width: 1100px; margin: 0 auto; }
.legal-stage h1 {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 56px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}
.legal-stage h1 .ruby-u { color: var(--ruby); }
.legal-stage .jp-title {
  font-family: var(--serif-jp);
  font-size: 16px;
  color: var(--ruby);
  margin-bottom: 28px;
  display: block;
}
.legal-stage h2 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hair);
}
.legal-stage h2::before { content: "❀ "; color: var(--ruby); }
.legal-stage p, .legal-stage li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal-stage ul { padding-left: 20px; list-style: disc; }
.legal-stage ul li::marker { color: var(--ruby); }
.legal-stage strong { color: var(--ink); font-weight: 700; }

.detail-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 100px 80px 60px;
  align-items: center;
}
.detail-hero-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-float);
  aspect-ratio: 4/3;
  background: var(--bone);
}
.detail-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-text h1 {
  font-family: var(--serif-en);
  font-weight: 800;
  font-size: 60px;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 14px;
}
.detail-hero-text .jp { font-family: var(--serif-jp); font-size: 16px; color: var(--ruby); margin-bottom: 18px; display: block; }
.detail-hero-text p { font-size: 16px; color: var(--ink-soft); line-height: 1.9; margin-bottom: 20px; }
.price-tag {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--ruby);
  border-radius: 4px;
  padding: 12px 18px;
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 28px;
  color: var(--ruby);
  margin-bottom: 12px;
}
.price-tag small { font-family: var(--mono); font-size: 12px; color: var(--taupe); margin-left: 8px; font-weight: 400; }

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.detail-gallery .g-cell {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-float);
  aspect-ratio: 4/3;
  background: var(--bone);
}
.detail-gallery .g-cell img { width: 100%; height: 100%; object-fit: cover; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.form-success.is-visible { display: block; }
.form-success .check-circle { width: 70px; height: 70px; font-size: 30px; }
.form-success h3 {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  margin: 18px 0 8px;
}
.form-success p { color: var(--ink-soft); font-size: 15px; }

@media (max-width: 1199px) {
  .site-shell { padding-left: 72px; }
  .dock-rail { width: 72px; padding: 24px 12px; }
  .dock-logo { align-items: center; }
  .dock-mark { width: 26px; height: 26px; }
  .dock-domain {
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 2px;
    transform: rotate(180deg);
  }
  .dock-name { display: none; }
  .dock-link { padding: 10px; justify-content: center; }
  .dock-link span { display: none; }
  .dock-link.is-active::before { width: 6px; height: 6px; }
  .dock-foot { display: none; }
  .hero-card-tl, .hero-card-tr { width: 180px; padding: 18px; }
  .hero-card-mid { width: 460px; padding: 40px 32px; }
  .section-shell { padding: 80px 50px; }
  .contact-stage { padding: 80px 50px; }
  .site-footer { padding: 50px 50px 28px; }
  .compact-hero { padding: 100px 50px 50px; }
  .legal-stage { padding: 100px 50px; }
  .detail-hero { padding: 80px 50px 40px; grid-template-columns: 1fr; }
  .benefits-row { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-stage { grid-template-columns: 1fr; }
  .split-sticky { position: static; }
  .split-content { padding-left: 0; margin-top: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-photo { display: none; }
}

@media (max-width: 767px) {
  .site-shell { padding-left: 0; padding-top: 56px; }
  .dock-rail { display: none; }
  .topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1.5px dashed var(--ruby);
    align-items: center;
    padding: 0 70px 0 16px;
    z-index: 60;
  }
  .topbar .top-mark { width: 24px; height: 24px; margin-right: 10px; }
  .topbar .top-domain {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    letter-spacing: 0.5px;
  }
  .burger-pad { display: flex; }
  .hero-stage { padding: 40px 20px; min-height: auto; }
  .hero-card { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; margin: 0 auto 14px; }
  .hero-card-tl, .hero-card-tr { display: none; }
  .hero-card-mid { width: 100%; max-width: 100%; padding: 30px 22px; }
  .hero-h1 { font-size: 42px; }
  .hero-specs { position: relative; bottom: auto; left: auto; transform: none; flex-direction: column; margin-top: 20px; }
  .section-shell { padding: 60px 20px; }
  .section-shell.compact { padding: 50px 20px; }
  .section-h2 { font-size: 36px; }
  .compact-hero { padding: 80px 20px 40px; }
  .contact-stage { padding: 60px 20px; }
  .site-footer { padding: 40px 20px 24px; }
  .legal-stage { padding: 80px 20px; }
  .detail-hero { padding: 80px 20px 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .benefits-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-inner { grid-template-columns: 1fr; }
  .service-meta { grid-template-columns: 1fr; }
  .reviews-coverflow { height: 520px; }
  .review-card { width: 88%; padding: 24px 20px; }
  .review-card.is-left { transform: translateX(-50%) scale(0.7) rotateY(28deg); opacity: 0.3; }
  .review-card.is-right { transform: translateX(50%) scale(0.7) rotateY(-28deg); opacity: 0.3; }
  .kinetic-bg .kinetic-seduction { font-size: 38vw; animation: none; }
  .kinetic-bg .kinetic-paint { font-size: 32vw; animation: none; }
  .hero-cta { padding: 12px 18px; font-size: 12px; }
  .form-submit { width: 100%; justify-content: center; }
  .marquee-cell { font-size: 32px; gap: 12px; }
  .marquee-track { gap: 30px; }
  .thanks-card { padding: 50px 30px; }
  .thanks-card h1 { font-size: 38px; }
  .contact-info h2 { font-size: 42px; }
  .detail-hero-text h1 { font-size: 42px; }
  .legal-stage h1 { font-size: 38px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; max-width: none; }
  .team-photo { display: none; }
  .tl-item { flex-wrap: wrap; }
  .tl-year { width: 100%; }
  .split-photo { aspect-ratio: 4/3; }
}
