/* ==========================================================================
   SIFTO — SHIFT YOUR SIGHT.
   Base / Variables
   ========================================================================== */

:root {
  --ivory: #FAF9F6;
  --sand: #EDEAE4;
  --charcoal: #1A1A1A;
  --charcoal-soft: rgba(26, 26, 26, 0.72);
  --dusty-blue: #8FA7B7;
  --dusty-sage: #9DB8B1;
  --dusty-yellow: #E5C24B;

  --font-en: 'Manrope', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;

  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-slow: 1.1s;
  --dur-med: 0.6s;
  --dur-fast: 0.3s;

  --container: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
}

h1, h2, h3, h4 {
  font-family: var(--font-en);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

section {
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* subtle grain texture applied over the whole page for warmth */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* page transition veil */
.veil {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s var(--ease-soft);
}
.veil.is-active { opacity: 1; pointer-events: all; }
body.is-loading .veil { opacity: 1; pointer-events: all; }
body.is-ready .veil { opacity: 0; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] { transform: none; }
[data-reveal].is-visible[data-reveal="fade"] { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: opacity 0.4s ease; transform: none !important; }
  html { scroll-behavior: auto; }
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  mix-blend-mode: normal;
  transition: padding 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}

.site-header.is-scrolled {
  padding: 16px 40px;
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(26,26,26,0.06);
}

@media (max-width: 640px) {
  .site-header, .site-header.is-scrolled { padding: 20px; }
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo .mark {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.12em;
}
.logo .sub {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.28em;
  margin-top: 6px;
  opacity: 0.5;
}

.nav-desktop {
  display: flex;
  gap: 40px;
}
.nav-desktop a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--charcoal);
  transition: right 0.4s var(--ease-soft);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-current::after { right: 0; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
}

body.menu-open .site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}
body.menu-open .logo { color: var(--ivory); }
body.menu-open .nav-desktop { opacity: 0; pointer-events: none; }

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-soft), background 0.4s;
}
.menu-toggle:hover { transform: scale(1.06); }
.menu-toggle .bars {
  width: 18px;
  height: 12px;
  position: relative;
}
.menu-toggle .bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease-soft), opacity 0.35s var(--ease-soft), top 0.35s var(--ease-soft);
}
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 50%; }
.menu-toggle .bars span:nth-child(3) { top: 100%; }

body.menu-open .menu-toggle .bars span:nth-child(1) { top: 50%; transform: rotate(45deg); }
body.menu-open .menu-toggle .bars span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle .bars span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

/* ==========================================================================
   Fullscreen menu overlay
   ========================================================================== */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--charcoal);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 56px) 56px);
  transition: clip-path 0.75s var(--ease-soft);
  pointer-events: none;
}
body.menu-open .menu-overlay {
  clip-path: circle(150% at calc(100% - 56px) 56px);
  pointer-events: all;
}

.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-overlay nav a {
  font-family: var(--font-en);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 8px 0;
  opacity: 0.5;
  transition: opacity 0.4s var(--ease-soft), padding-left 0.4s var(--ease-soft);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.menu-overlay nav a::before {
  font-size: 14px;
  opacity: 0.6;
  font-weight: 500;
}
.menu-overlay nav a:nth-child(1)::before { content: "00"; }
.menu-overlay nav a:nth-child(2)::before { content: "01"; }
.menu-overlay nav a:nth-child(3)::before { content: "02"; }
.menu-overlay nav a:nth-child(4)::before { content: "03"; }
.menu-overlay nav a:nth-child(5)::before { content: "04"; }
.menu-overlay nav a:nth-child(6)::before { content: "05"; }
.menu-overlay nav a:hover,
.menu-overlay nav a.is-current { opacity: 1; padding-left: 14px; }

.menu-overlay .menu-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(250,249,246,0.15);
  padding-top: 28px;
}
.menu-overlay .menu-sns {
  display: flex;
  gap: 24px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.menu-overlay .menu-sns a { opacity: 0.6; }
.menu-overlay .menu-sns a:hover { opacity: 1; }
.menu-overlay .menu-copy {
  font-family: var(--font-en);
  font-size: 12px;
  opacity: 0.4;
  max-width: 320px;
  line-height: 1.7;
}

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

.btn-round {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  line-height: 1.5;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-soft), background 0.4s;
}
.btn-round:hover { transform: scale(1.08); background: #000; }
.btn-round .arrow { display: block; margin-top: 6px; font-size: 16px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--charcoal);
  transition: gap 0.35s var(--ease-soft), opacity 0.35s;
}
.btn-line:hover { gap: 22px; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 18px 34px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: transform 0.4s var(--ease-soft), background 0.4s;
}
.btn-solid:hover { transform: translateY(-3px); background: #000; }

/* ==========================================================================
   Floating decorative objects (spheres / cubes)
   ========================================================================== */

.floaty {
  position: absolute;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
.floaty.sphere {
  border-radius: 50%;
}
.floaty.cube {
  border-radius: 6px;
  transform: rotate(18deg);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero {
  padding: 220px 0 120px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(32px, 4.8vw, 60px);
  margin-top: 26px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.page-hero .page-hero-lead {
  max-width: 560px;
  margin-top: 32px;
  font-size: 16px;
  opacity: 0.75;
}
.page-hero .deco-ring {
  position: absolute;
  right: -120px;
  top: 60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.12);
}
.page-hero .deco-ring.small {
  width: 220px; height: 220px;
  right: 20px; top: 180px;
  border-color: rgba(26,26,26,0.08);
}

@media (max-width: 640px) {
  .page-hero { padding: 150px 0 70px; }
}

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

.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 110px 0 40px;
  margin-top: 160px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(250,249,246,0.14);
}
.footer-tagline {
  font-size: clamp(26px, 3.6vw, 44px);
  max-width: 640px;
  line-height: 1.2;
}
.footer-cta { flex-shrink: 0; }

.footer-cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 56px 0;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid rgba(250,249,246,0.1);
  font-family: var(--font-en);
  font-size: 11px;
  opacity: 0.45;
  letter-spacing: 0.06em;
}
.footer-legal-link { opacity: 1; }
.footer-legal-link:hover { text-decoration: underline; }

/* ---------- Legal pages (privacy policy, etc.) ---------- */
.legal-section { padding: 60px 0 100px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content > p { font-size: 14px; line-height: 2; opacity: 0.8; margin-bottom: 20px; }
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 52px;
  margin-bottom: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(26,26,26,0.12);
}
.legal-content h2:first-of-type { margin-top: 40px; }
.legal-list {
  margin: 0 0 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  list-style: none;
  counter-increment: legal-item;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.8;
  padding-left: 28px;
  position: relative;
}
ol.legal-list { counter-reset: legal-item; }
ol.legal-list li::before {
  content: counter(legal-item);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.5;
}
.legal-list--plain li { padding-left: 0; }
.legal-date {
  margin-top: 48px;
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.9;
}

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .site-footer { padding: 80px 0 30px; }
  .footer-top { padding-bottom: 40px; }
}

/* ==========================================================================
   HERO — the eye
   ========================================================================== */

.hero {
  min-height: 100vh;
  padding: 150px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
}

.hero-copy-left {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
}
.hero-copy-left h1 {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.98;
}
.hero-copy-left h1 .dot { color: var(--dusty-yellow); }
.hero-copy-left p {
  font-family: var(--font-jp);
  font-size: 17px;
  margin-top: 26px;
  line-height: 1.9;
}
.hero-copy-left p.hero-fact {
  font-size: 13.5px;
  margin-top: 16px;
  line-height: 1.9;
  opacity: 0.65;
  max-width: 420px;
}

.hero-copy-right {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 34px;
  max-width: 420px;
}
.hero-copy-right p {
  font-size: 14.5px;
  line-height: 1.95;
  opacity: 0.8;
}

.hero-eye-stage {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  width: min(72vw, 820px);
  aspect-ratio: 1590 / 989;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  filter: drop-shadow(0 40px 60px rgba(26,26,26,0.16));
}

.hero-eye-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06) translate(var(--px, 0px), var(--py, 0px));
  transition: transform 0.25s var(--ease-soft);
}

/* bird & cloud, extracted as separate sprites so they can drift independently */
.hero-eye-bird {
  position: absolute;
  left: 20.44%;
  top: 16.18%;
  width: 3.9%;
  height: auto;
  animation: birdFly 9s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(26,26,26,0.12));
}
@keyframes birdFly {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(22px, -12px) rotate(-3deg); }
}

.hero-eye-cloud {
  position: absolute;
  left: 25.16%;
  top: 10.61%;
  width: 17.6%;
  height: auto;
  animation: cloudDrift 24s ease-in-out infinite;
}
@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}

@media (max-width: 1024px) {
  .hero-eye-bird { animation-duration: 7s; }
  .hero-eye-cloud { animation-duration: 18s; }
}

/* precise position of the circular "window" inside the photo, measured from the source image */
.hero-eye-sweep {
  position: absolute;
  left: 40.4%;
  top: 34%;
  width: 21.4%;
  height: 34.4%;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}
.hero-eye-sweep::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: heroSweep 7s ease-in-out infinite;
}
@keyframes heroSweep {
  0% { transform: translateX(0) rotate(12deg); }
  100% { transform: translateX(420%) rotate(12deg); }
}

.scroll-hint {
  position: absolute;
  left: 40px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  opacity: 0.55;
  z-index: 2;
}
.scroll-hint .dot-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dusty-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1024px) {
  .hero { display: flex; flex-direction: column; padding-top: 130px; text-align: center; gap: 34px; }
  .hero-eye-stage { width: min(84vw, 560px); order: 1; }
  .hero-copy-left { order: 2; }
  .hero-copy-left p { margin-left: auto; margin-right: auto; max-width: 320px; }
  .hero-copy-right { order: 3; justify-self: center; margin: 0 auto; flex-direction: column; align-items: center; text-align: center; }
  .scroll-hint { position: static; justify-content: center; margin-top: 10px; order: 4; }
}

/* ==========================================================================
   DISCOVERY AREA — doors & stairs
   ========================================================================== */

.discovery {
  padding: 60px 0 160px;
}
.discovery-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.discovery-head h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  margin-top: 18px;
  line-height: 1.2;
}
.discovery-head p {
  margin-top: 20px;
  opacity: 0.7;
  font-size: 15px;
}

.stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 640px;
  perspective: 1800px;
}
.stage-inner {
  position: absolute;
  inset: 0;
  transform: rotateX(6deg);
  transform-style: preserve-3d;
}

/* ---- photo-based stage (desktop) ---- */
.stage-photo { display: none; }

@media (min-width: 901px) {
  .stage-inner { display: none; }
  .stage-photo {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 50px 90px rgba(26,26,26,0.16);
  }
  .stage-photo-img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.stage-hotspot {
  position: absolute;
  display: block;
  cursor: pointer;
  outline: none;
}
.stage-hotspot .hotspot-ring {
  position: absolute;
  inset: 0;
  border-radius: 10% / 8%;
  border: 1.5px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 0 4px rgba(26,26,26,0.05), 0 10px 30px rgba(26,26,26,0.12);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.stage-hotspot.is-round .hotspot-ring { border-radius: 50%; }
.stage-hotspot:hover .hotspot-ring,
.stage-hotspot:focus-visible .hotspot-ring {
  opacity: 1;
  transform: scale(1.04);
}

.stage-hotspot .hotspot-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--dusty-yellow);
  box-shadow: 0 2px 8px rgba(26,26,26,0.3);
  animation: hotspotPulse 2.6s ease-in-out infinite;
}
.stage-hotspot:hover .hotspot-pulse { opacity: 0; }
@keyframes hotspotPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.stage-hotspot .hotspot-label {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translate(-50%, 8px);
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  background: var(--ivory);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(26,26,26,0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}
.stage-hotspot.label-above .hotspot-label { bottom: auto; top: -14px; transform: translate(-50%, -8px); }
.stage-hotspot:hover .hotspot-label,
.stage-hotspot:focus-visible .hotspot-label {
  opacity: 1;
  transform: translate(-50%, 0);
}
.stage-hotspot .hotspot-label .arrow { opacity: 0.5; margin-left: 4px; }

.platform {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 6%;
  height: 60%;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(255,255,255,0.9), transparent 55%),
    linear-gradient(180deg, #FFFFFF, var(--sand));
  border-radius: 28px;
  box-shadow:
    0 16px 24px rgba(26,26,26,0.06),
    0 40px 60px rgba(26,26,26,0.08),
    0 90px 120px rgba(26,26,26,0.10),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -40px 60px rgba(26,26,26,0.04);
}

.door {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.5s var(--ease-soft);
}
.door:hover { transform: translateY(-10px); }

.door-frame {
  width: 84px;
  height: 128px;
  border-radius: 42px 42px 8px 8px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 8px rgba(26,26,26,0.10),
    0 22px 30px rgba(26,26,26,0.16),
    0 46px 60px rgba(26,26,26,0.10),
    inset 0 2px 0 rgba(255,255,255,0.35),
    inset 0 -10px 18px rgba(0,0,0,0.12);
  transition: box-shadow 0.4s var(--ease-soft);
}
.door:hover .door-frame {
  box-shadow:
    0 8px 10px rgba(26,26,26,0.12),
    0 30px 44px rgba(26,26,26,0.22),
    0 60px 80px rgba(26,26,26,0.14),
    inset 0 2px 0 rgba(255,255,255,0.4),
    inset 0 -10px 18px rgba(0,0,0,0.1);
}

.door-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(255,255,255,0.55), transparent 60%);
}
.door-frame .glow {
  position: absolute;
  inset: 6px;
  border-radius: 36px 36px 4px 4px;
  background: var(--ivory);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
}
.door:hover .door-frame .glow { opacity: 0.9; }
.door-frame .knob {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26,26,26,0.35);
}

.door.blue .door-frame { background: var(--dusty-blue); }
.door.yellow .door-frame { background: var(--dusty-yellow); }
.door.sage .door-frame { background: var(--dusty-sage); }
.door.charcoal .door-frame { background: var(--charcoal); }
.door.small .door-frame { width: 64px; height: 96px; border-radius: 32px 32px 6px 6px; }

.door-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.door-label .arrow { opacity: 0.5; transition: transform 0.4s var(--ease-soft), opacity 0.4s; }
.door:hover .door-label .arrow { transform: translateX(4px); opacity: 1; }

.door.works { left: 6%; bottom: 8%; }
.door.service { left: 30%; bottom: 34%; }
.door.news { left: 52%; bottom: 4%; }
.door.about { left: 66%; bottom: 30%; }
.door.contact { left: 84%; bottom: 12%; }

.step {
  position: absolute;
  background: linear-gradient(180deg, #fff, var(--sand));
  border-radius: 10px;
  box-shadow: 0 14px 20px rgba(26,26,26,0.08);
}

.stage .floaty.sphere-1 { width: 46px; height: 46px; background: linear-gradient(160deg, #fff, var(--dusty-sage)); top: 6%; left: 44%; opacity: 0.85; }
.stage .floaty.sphere-2 { width: 22px; height: 22px; background: var(--charcoal); top: 40%; left: 20%; opacity: 0.12; border-radius: 50%; }
.stage .floaty.cube-1 { width: 30px; height: 30px; background: linear-gradient(160deg, #fff, var(--dusty-blue)); top: 16%; right: 8%; }
.stage .floaty.sphere-3 { width: 16px; height: 16px; background: var(--dusty-yellow); bottom: 44%; right: 22%; }

.stage-dots {
  position: absolute;
  right: -30px;
  top: 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stage-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: 0.18;
}
.stage-dots span:first-child { opacity: 0.6; }

@media (max-width: 900px) {
  .stage { height: auto; perspective: none; }
  .stage-inner { position: static; transform: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 20px; padding: 20px 10px 40px; }
  .platform { display: none; }
  .door { position: static !important; }
  .stage-dots { display: none; }
  .stage .floaty { display: none; }
}
@media (max-width: 480px) {
  .stage-inner { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Section heads (shared)
   ========================================================================== */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  margin-top: 16px;
}
.section-head p {
  max-width: 380px;
  opacity: 0.7;
  font-size: 14.5px;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(26,26,26,0.12);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(26,26,26,0.12); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 300;
  opacity: 0.5;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-soft);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  font-size: 13.5px;
  line-height: 1.9;
  opacity: 0.7;
  margin-top: 14px;
  max-width: 640px;
}

/* ==========================================================================
   WORKS preview + WORKS page grid
   ========================================================================== */

.works-preview, .works-grid-section { padding: 70px 0 40px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: var(--ivory);
  transition: transform 0.55s var(--ease-soft), box-shadow 0.55s var(--ease-soft);
  box-shadow: 0 20px 40px rgba(26,26,26,0.08);
}
.work-card:hover { transform: translateY(-8px); box-shadow: 0 30px 54px rgba(26,26,26,0.16); }
.work-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, var(--tone-a, var(--dusty-blue)), var(--tone-b, var(--charcoal)));
  transition: transform 0.8s var(--ease-soft);
}
.work-card:hover::before { transform: scale(1.06); }
.work-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent 55%);
}
.work-card .wc-content { position: relative; z-index: 1; }
.work-card .wc-tag {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.8;
  margin-bottom: 10px;
  display: block;
}
.work-card .wc-title {
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}
.work-card .wc-meta {
  font-family: var(--font-jp);
  font-size: 11px;
  line-height: 1.7;
  opacity: 0.62;
  margin-top: 8px;
  max-width: 260px;
}
.work-card .wc-eye {
  position: absolute;
  top: 22px; right: 22px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
}
.work-card .wc-eye span { width: 8px; height: 8px; border-radius: 50%; background: var(--ivory); }

.work-card.tone-1 { --tone-a: #A9C0CD; --tone-b: #37474F; }
.work-card.tone-2 { --tone-a: #EBD48A; --tone-b: #6B5A2A; }
.work-card.tone-3 { --tone-a: #AFC9C2; --tone-b: #33453F; }
.work-card.tone-4 { --tone-a: #D9CFC0; --tone-b: #2A2622; }
.work-card.tone-5 { --tone-a: #B7C4D0; --tone-b: #232B33; }
.work-card.tone-6 { --tone-a: #E3C24B; --tone-b: #4a3c14; }

.work-card--photo::before { background: var(--charcoal); }
.wc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-soft);
}
.work-card--photo:hover .wc-photo { transform: scale(1.06); }

.work-card.is-placeholder { cursor: default; }
.work-card.is-placeholder:hover { transform: none; box-shadow: 0 20px 40px rgba(26,26,26,0.08); }
.work-card.is-placeholder::before { opacity: 0.55; }
.wc-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
}

.view-all-wrap { text-align: center; margin-top: 56px; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* work filter tabs (works.html) */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.work-filters button {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(26,26,26,0.18);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.work-filters button.is-active,
.work-filters button:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.work-card.is-hidden { display: none; }

/* ==========================================================================
   SERVICE preview + page
   ========================================================================== */

.service-preview, .service-list-section { padding: 70px 0; }

.service-row-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(26,26,26,0.12);
  transition: padding-left 0.4s var(--ease-soft);
}
.service-row:last-child { border-bottom: 1px solid rgba(26,26,26,0.12); }
.service-row:hover { padding-left: 14px; }
.service-row .num {
  font-family: var(--font-en);
  font-size: 13px;
  opacity: 0.4;
}
.service-row h3 {
  font-size: clamp(18px, 2.2vw, 23px);
}
.service-row .desc {
  font-size: 14px;
  opacity: 0.7;
  max-width: 380px;
  margin-top: 8px;
}
.service-row .keywords {
  font-size: 11.5px;
  opacity: 0.45;
  max-width: 420px;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.service-detail {
  margin-top: 14px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-detail li {
  list-style: none;
  font-size: 12.5px;
  opacity: 0.6;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.service-detail li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: currentColor;
  opacity: 0.5;
  border-radius: 50%;
}

/* ---------- Pricing ---------- */
.pricing-section { padding: 70px 0; }
.pricing-lead {
  font-size: 13.5px;
  opacity: 0.7;
  line-height: 1.9;
  max-width: 720px;
  margin: -24px 0 56px;
}
.pricing-note {
  margin-top: 32px;
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.9;
  max-width: 680px;
}

/* ---------- Plan cards (Package / Full-order) ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.plan-card {
  padding: 40px 36px;
  border: 1px solid rgba(26,26,26,0.12);
  border-top: 3px solid var(--charcoal);
  display: flex;
  flex-direction: column;
}
.plan-card__head { margin-bottom: 28px; }
.plan-card__head h3 { font-size: clamp(20px, 2.4vw, 25px); }
.plan-card__price {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 700;
  margin-top: 14px;
}
.plan-card__price span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  margin-left: 4px;
}
.plan-card__sub {
  font-size: 13.5px;
  opacity: 0.7;
  line-height: 1.8;
  margin-top: 14px;
}
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px 0;
  margin: 4px 0 24px;
  border-top: 1px solid rgba(26,26,26,0.1);
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.plan-card__features li {
  list-style: none;
  font-size: 13px;
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
  opacity: 0.85;
}
.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: currentColor;
  opacity: 0.5;
  border-radius: 50%;
}
.plan-card__audience { margin-bottom: 24px; }
.plan-card__audience-label,
.plan-card__cases-label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.5;
  margin-bottom: 10px;
}
.plan-card__audience ul { display: flex; flex-direction: column; gap: 6px; }
.plan-card__audience li {
  list-style: none;
  font-size: 12.5px;
  opacity: 0.75;
  line-height: 1.7;
}
.plan-card__cases {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-card__cases a {
  font-size: 12.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
}
.plan-card__cases a:hover { opacity: 1; }
.plan-card__cta { margin-top: auto; align-self: flex-start; }

/* ---------- Comparison table ---------- */
.compare-wrap { margin-bottom: 64px; }
.table-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 16px 18px;
  font-size: 13px;
  border-top: 1px solid rgba(26,26,26,0.12);
  white-space: nowrap;
}
.compare-table thead th {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  font-weight: 500;
  border-top: none;
}
.compare-table tbody th {
  font-weight: 500;
  opacity: 0.6;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(26,26,26,0.12);
}

/* ---------- Included / excluded ---------- */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 8px;
}
.scope-block {
  padding: 28px 30px;
  background: rgba(26,26,26,0.03);
}
.scope-block h4 { font-size: 14px; margin-bottom: 14px; }
.scope-block ul { display: flex; flex-direction: column; gap: 8px; }
.scope-block li {
  list-style: none;
  font-size: 12.5px;
  opacity: 0.7;
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}
.scope-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: currentColor;
  opacity: 0.4;
  border-radius: 50%;
}

/* ---------- Pricing FAQ ---------- */
.pricing-faq { margin-top: 64px; }
.pricing-faq__title { font-size: clamp(19px, 2.2vw, 23px); margin-bottom: 24px; }

@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
}
.service-row .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.16);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
  transition: opacity 0.4s, transform 0.4s var(--ease-soft), background 0.4s;
  flex-shrink: 0;
}
.service-row:hover .icon { opacity: 1; transform: rotate(-38deg); background: var(--charcoal); color: var(--ivory); }

@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .service-row .icon { display: none; }
}

/* process steps (service.html) */
.process {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
  position: relative;
  flex-wrap: wrap;
}
.process::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(26,26,26,0.18) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  flex: 1 1 140px;
  text-align: center;
}
.process-step .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid rgba(26,26,26,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}
.process-step.is-active .dot { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.process-step h4 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 12.5px; opacity: 0.65; }

/* ==========================================================================
   ABOUT preview (hidden door teaser) + ABOUT page full experience
   ========================================================================== */

.about-preview { padding: 40px 0 140px; }

.about-preview-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-preview-text h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.about-preview-text p {
  margin: 20px 0 34px;
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.75;
  max-width: 380px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

.about-preview-visual {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26,26,26,0.14);
}
.about-preview-img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-soft);
}
.about-preview-visual:hover .about-preview-img { transform: scale(1.035); }

.psst-note {
  position: absolute;
  left: 33%;
  top: 22%;
  width: 25%;
  pointer-events: none;
}
.psst-word {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
}
.psst-arrow {
  display: block;
  width: 85%;
  margin: 4px 0 0 6%;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-text { text-align: center; }
  .about-preview-text p { margin-left: auto; margin-right: auto; }
  .psst-note { left: 30%; top: 18%; width: 32%; }
}
@media (max-width: 560px) {
  .psst-note { display: none; }
}

/* ==========================================================================
   Full ABOUT page door experience
   ========================================================================== */

.about-door-section {
  padding: 20px 0 140px;
}
.about-door-stage {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1536 / 1024;
  cursor: pointer;
  box-shadow: 0 50px 90px rgba(26,26,26,0.14);
}
.door-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.9s var(--ease-soft);
}
.door-open { opacity: 0; }
.about-door-stage.is-open .door-closed { opacity: 0; }
.about-door-stage.is-open .door-open { opacity: 1; }

.about-door-stage .prompt {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(250,249,246,0.85);
  box-shadow: 0 10px 24px rgba(26,26,26,0.1);
  opacity: 0.85;
  z-index: 2;
  transition: opacity 0.4s;
}
.about-door-stage.is-open .prompt { opacity: 0; }

.about-reveal {
  max-width: 760px;
  margin: 70px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-soft) 0.3s, transform 0.8s var(--ease-soft) 0.3s;
}
.about-door-stage.is-open ~ .about-reveal,
.about-reveal.is-open {
  opacity: 1;
  transform: translateY(0);
}
.about-reveal h3 { font-size: clamp(21px, 2.8vw, 28px); }
.about-reveal p { margin-top: 20px; opacity: 0.75; font-size: 15.5px; }

.about-story { padding: 20px 0 100px; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-story-grid p { margin-top: 18px; opacity: 0.78; font-size: 15px; }
.about-values {
  display: grid;
  gap: 22px;
}
.about-value {
  padding: 26px;
  border-radius: 18px;
  background: var(--sand);
}
.about-value h4 { font-size: 16px; margin-bottom: 8px; }
.about-value p { font-size: 13.5px; opacity: 0.7; margin: 0; }

.about-numbers {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 90px 0;
  padding: 50px 0;
  border-top: 1px solid rgba(26,26,26,0.12);
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.about-numbers .num-item { text-align: center; flex: 1 1 140px; }
.about-numbers .num-item .n {
  font-family: var(--font-en);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
}
.about-numbers .num-item .n .plus { color: var(--dusty-yellow); }
.about-numbers .num-item .l { font-size: 12px; opacity: 0.6; margin-top: 8px; letter-spacing: 0.08em; }

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.company-table tr { border-top: 1px solid rgba(26,26,26,0.12); }
.company-table tr:last-child { border-bottom: 1px solid rgba(26,26,26,0.12); }
.company-table th, .company-table td {
  text-align: left;
  padding: 20px 10px;
  font-weight: 400;
  font-size: 14.5px;
  vertical-align: top;
}
.company-table th {
  font-family: var(--font-en);
  width: 200px;
  opacity: 0.5;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.company-map {
  margin-top: 32px;
}
.company-map iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(26,26,26,0.12);
  filter: grayscale(0.2) contrast(1.02);
}
.company-map-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  opacity: 0.65;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.company-map-link:hover { opacity: 1; }

@media (max-width: 800px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .company-table th { width: 120px; }
  .company-map iframe { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-cta { padding: 60px 0 150px; text-align: center; }
.contact-cta h2 {
  font-size: clamp(28px, 4.6vw, 50px);
  max-width: 760px;
  margin: 20px auto 0;
  line-height: 1.2;
}
.contact-cta p { margin-top: 26px; opacity: 0.7; max-width: 480px; margin-left: auto; margin-right: auto; }
.contact-cta .btn-solid { margin-top: 40px; }

.contact-section { padding: 30px 0 140px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.contact-info h3 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 20px; }
.contact-info p { opacity: 0.75; font-size: 14.5px; margin-bottom: 34px; }
.contact-info p.contact-note { opacity: 0.55; font-size: 12px; line-height: 1.8; margin-top: -18px; }
.contact-info .info-item { margin-bottom: 22px; }
.contact-info .info-item .l { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.14em; opacity: 0.5; }
.contact-info .info-item .v { font-size: 15px; margin-top: 6px; }

.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.6;
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(26,26,26,0.24);
  background: transparent;
  padding: 12px 4px;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--charcoal);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-submit {
  margin-top: 10px;
}
.form-note { font-size: 12px; opacity: 0.5; margin-top: 16px; }

.form-success {
  display: none;
  padding: 50px 30px;
  text-align: center;
  background: var(--sand);
  border-radius: 20px;
}
.form-success.is-visible { display: block; }
.form-success h4 { font-size: 20px; margin-bottom: 12px; }
.form-success p { opacity: 0.7; font-size: 14px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

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

.news-section { padding: 30px 0 150px; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  border-top: 1px solid rgba(26,26,26,0.12);
}
.news-item:last-child { border-bottom: 1px solid rgba(26,26,26,0.12); }
.news-item-head {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 26px 0;
  cursor: pointer;
}
.news-item-head .date {
  font-family: var(--font-en);
  font-size: 13px;
  opacity: 0.5;
  flex-shrink: 0;
  width: 100px;
}
.news-item-head .tag {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sand);
  flex-shrink: 0;
}
.news-item-head .title { flex: 1; font-size: 15px; }
.news-item-head .plus {
  font-family: var(--font-en);
  font-size: 18px;
  opacity: 0.4;
  transition: transform 0.4s var(--ease-soft);
  flex-shrink: 0;
}
.news-item.is-open .news-item-head .plus { transform: rotate(45deg); }
.news-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-soft);
}
.news-item.is-open .news-body { max-height: 220px; }
.news-body-inner { padding: 0 0 30px 130px; font-size: 14px; opacity: 0.72; max-width: 560px; }

@media (max-width: 640px) {
  .news-item-head { gap: 14px; flex-wrap: wrap; }
  .news-item-head .title { width: 100%; order: 3; }
  .news-body-inner { padding-left: 0; }
}
