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

:root {
  --bg-base: #F5F7FA;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-graphite: #2C3A47;
  --text-primary: #2C3A47;
  --text-secondary: #5A6B7A;
  --text-light: #8A9AAB;
  --accent-aqua: #0097A7;
  --accent-aqua-light: #00B4D8;
  --accent-amber: #F9A826;
  --accent-amber-soft: #FDB94E;
  --border-soft: #E0E5EC;
  --border-aqua: #00B4D8;
  --shadow-soft: 0px 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-deep: 0px 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-glass: 0px 12px 32px rgba(0, 0, 0, 0.06);
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-jp: 'Noto Serif JP', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-soft: 12px;
  --radius-mid: 16px;
  --radius-pill: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; max-width: 100vw; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong, p, span, h1, h2, h3, h4, h5, h6, li, a, button, label, input, textarea {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.3rem; }

p { color: var(--text-primary); line-height: 1.8; }

a { color: var(--accent-aqua); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-amber); }

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

.particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.site-shell {
  position: relative;
  z-index: 2;
}

.floating-panel {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 280px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
  padding: 28px 20px;
  z-index: 100;
  border: 1px solid rgba(224, 229, 236, 0.6);
}

.floating-panel .logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.logo-mark {
  width: 56px;
  height: 56px;
  position: relative;
  margin-bottom: 12px;
}

.logo-domain {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: 0.6px;
  text-align: center;
}

.logo-tagline {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--accent-aqua);
  letter-spacing: 2px;
  margin-top: 6px;
  font-weight: 300;
  text-align: center;
}

.floating-panel .nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.floating-panel .nav-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.floating-panel .nav-list a:hover {
  background: rgba(0, 151, 167, 0.06);
  color: var(--accent-aqua);
}

.floating-panel .nav-list a:hover::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent-amber);
}

.floating-panel .nav-list a.active {
  background: rgba(0, 151, 167, 0.08);
  color: var(--accent-aqua);
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--accent-aqua);
  fill: none;
  stroke-width: 1.5;
}

.mobile-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 200;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
}

.mobile-bar .mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-bar .logo-mark {
  width: 28px;
  height: 28px;
  margin: 0;
}

.mobile-bar .logo-domain {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.mobile-bar .logo-tagline { display: none; }

.burger-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--accent-aqua);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--accent-aqua);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 300;
  padding: 80px 28px 28px;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-deep);
  overflow-y: auto;
}

.mobile-menu.open { left: 0; }

.mobile-menu .close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-primary);
}

.mobile-menu .nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu .nav-list a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  padding-left: 24px;
}

.mobile-menu .nav-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
}

.mobile-menu .nav-list a.active { color: var(--accent-aqua); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 58, 71, 0.4);
  backdrop-filter: blur(2px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.main-shell {
  margin-left: 328px;
  min-height: 100vh;
  position: relative;
}

.container-wide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-mid);
  overflow: hidden;
  height: 70vh;
  min-height: 480px;
  box-shadow: var(--shadow-deep);
}

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

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.15) 0%, rgba(245, 247, 250, 0.05) 100%);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-aqua);
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '— ';
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title .drop-cap {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2em;
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-amber-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-right: 4px;
}

.hero-jp-sub {
  font-family: var(--font-jp);
  font-weight: 300;
  font-size: 18px;
  color: var(--accent-aqua);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero-text-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 44px 40px;
  border-radius: var(--radius-mid);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 229, 236, 0.5);
  position: relative;
  z-index: 3;
}

.hero-text-card .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-aqua);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
  letter-spacing: 0.3px;
}

.btn-pill:hover {
  background: var(--accent-aqua-light);
  box-shadow: 0 0 0 3px var(--accent-amber), 0 8px 20px rgba(0, 151, 167, 0.25);
  transform: translateY(-2px);
  padding-left: 38px;
  padding-right: 38px;
  color: #FFFFFF;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
}

.btn-outline:hover {
  background: var(--text-primary);
  color: #FFFFFF;
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-amber);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
}

.btn-amber:hover {
  background: var(--accent-amber-soft);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.mini-gallery {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 4;
}

.mini-tile {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 3px solid #FFFFFF;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.mini-tile:hover { transform: scale(1.08); }
.mini-tile img { width: 100%; height: 100%; object-fit: cover; }

.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  margin-bottom: 60px;
  max-width: 760px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-aqua);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '— ';
  color: var(--accent-amber);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent-aqua);
  margin-top: 16px;
}

.section-title.center::after { margin-left: auto; margin-right: auto; }

.section-center .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-center .section-title::after { margin-left: auto; margin-right: auto; }

.section-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bento-stage {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  grid-template-rows: 280px 280px 220px;
  gap: 20px;
  position: relative;
}

.bento-cell {
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  z-index: 1;
}

.bento-cell:hover {
  z-index: 50;
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.bento-cell .hidden-content {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  padding: 28px;
  border-radius: var(--radius-mid);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.bento-cell:hover .hidden-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bento-cell .hidden-content .price-tag {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent-aqua);
  margin-bottom: 8px;
}

.bento-cell .hidden-content .time-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.bento-cell .hidden-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.bento-photo {
  padding: 0;
  position: relative;
}

.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-photo .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(44, 58, 71, 0.85) 0%, rgba(44, 58, 71, 0) 100%);
  color: #FFFFFF;
}

.bento-photo .photo-overlay h3 {
  font-family: var(--font-serif);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 4px;
}

.bento-photo .photo-overlay span {
  font-family: var(--font-jp);
  color: var(--accent-aqua-light);
  font-size: 13px;
  font-weight: 300;
}

.bento-icon-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-icon-cell .ic {
  width: 48px;
  height: 48px;
  stroke: var(--accent-aqua);
  fill: none;
  stroke-width: 1.4;
}

.bento-icon-cell h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-primary);
  margin-top: 16px;
  line-height: 1.2;
}

.bento-icon-cell .jp {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--accent-aqua);
  font-weight: 300;
  margin-top: 4px;
}

.bento-wide {
  grid-column: span 3;
  padding: 0;
  position: relative;
}

.bento-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-wide .wide-overlay {
  position: absolute;
  top: auto;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 20px;
  border-radius: 12px;
  max-width: none;
}

.bento-wide .wide-overlay h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.bento-wide .wide-overlay p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.editorial-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.editorial-photo {
  border-radius: var(--radius-mid);
  overflow: hidden;
  height: 540px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-photo:hover { transform: translateX(8px); }

.editorial-text {
  position: relative;
}

.editorial-text .drop-cap-letter {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  float: left;
  color: var(--accent-amber);
  margin: 6px 12px 0 0;
}

.editorial-text p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.editorial-text p:nth-child(2) .drop-cap-letter,
.editorial-text p:nth-child(3) .drop-cap-letter {
  color: var(--accent-aqua);
}

.timeline-rail {
  padding-left: 20px;
  border-left: 1px solid var(--border-soft);
}

.timeline-year {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 32px;
  color: var(--accent-aqua);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.timeline-event {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.process-stage {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.process-stage::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--accent-aqua);
  opacity: 0.3;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  position: relative;
}

.process-step:nth-child(even) .step-card {
  grid-column: 2;
  grid-row: 1;
}

.process-step:nth-child(even) .step-spacer {
  grid-column: 1;
  grid-row: 1;
}

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.step-card:hover {
  z-index: 10;
  transform: scale(1.04);
  box-shadow: var(--shadow-deep);
}

.step-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-amber);
  margin-bottom: 8px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.advantage-card {
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.advantage-card:last-child { margin-right: 0; }

.advantage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent-aqua) 1px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.advantage-card:hover::before { opacity: 0.12; }

.advantage-card:hover {
  z-index: 10;
  transform: scale(1.06);
  box-shadow: var(--shadow-deep);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  stroke: var(--accent-aqua);
  fill: none;
  stroke-width: 1.4;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.advantage-card .advantage-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.advantage-card:hover .advantage-detail { max-height: 200px; }

.advantage-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.marquee-stage {
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  padding: 80px 0;
  margin: 40px 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.marquee-track {
  display: flex;
  gap: 100px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-stage:hover .marquee-track {
  animation-play-state: paused;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.marquee-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 64px;
  color: var(--accent-aqua);
  letter-spacing: -1px;
}

.marquee-num.amber { color: var(--accent-amber); }

.marquee-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--text-primary);
  font-style: italic;
}

.marquee-divider {
  width: 1px;
  height: 60px;
  background: var(--border-soft);
}

.team-stack {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  margin-bottom: 24px;
  margin-left: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.team-card:nth-child(even) { margin-left: 80px; }

.team-card:hover {
  z-index: 100;
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-deep);
}

.team-photo {
  height: 240px;
  background: var(--bg-base);
  position: relative;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.team-card:hover .team-photo { filter: grayscale(0%); }

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

.team-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.team-info .role {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--accent-aqua);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.team-info .bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.team-card:hover .team-info .bio { max-height: 200px; }

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  transition: all 0.3s ease;
}

.faq-item.open { border-left: 3px solid var(--accent-amber); padding-left: 16px; }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 17px;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent-aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--accent-aqua);
  font-size: 18px;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--accent-aqua);
  color: #FFFFFF;
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.reviews-masonry {
  column-count: 3;
  column-gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  margin-bottom: 24px;
  break-inside: avoid;
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.review-quote-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--accent-aqua);
  opacity: 0.3;
  margin-bottom: 8px;
}

.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent-aqua);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta h4 {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.review-meta span {
  font-size: 12px;
  color: var(--text-secondary);
}

.contact-stage {
  background: var(--bg-graphite);
  border-radius: var(--radius-mid);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.contact-stage::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 151, 167, 0.2) 0%, transparent 70%);
}

.contact-stage::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(249, 168, 38, 0.12) 0%, transparent 70%);
}

.contact-stage .section-title { color: #FFFFFF; }
.contact-stage .section-title::after { background: var(--accent-amber); }
.contact-stage .section-eyebrow { color: var(--accent-amber); }
.contact-stage .section-eyebrow::before { color: var(--accent-aqua-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-info-block { color: #FFFFFF; }

.contact-phone {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-aqua-light);
  margin: 18px 0 32px;
  letter-spacing: 1px;
  display: block;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.contact-line:last-child { border-bottom: none; }

.contact-line .cl-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent-amber);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-mid);
  padding: 44px 40px;
  box-shadow: var(--shadow-deep);
  position: relative;
  color: var(--text-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: span 2; }

.form-field label {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-primary);
}

.form-field label .req { color: var(--accent-amber); margin-left: 2px; }

.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  background: var(--bg-base);
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent-aqua);
  background: #FFFFFF;
}

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

.form-submit {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(0, 151, 167, 0.08);
  border-left: 3px solid var(--accent-aqua);
  border-radius: 6px;
  font-size: 14px;
  color: var(--accent-aqua);
  display: none;
}

.form-status.show { display: block; }

.footer-block {
  background: var(--bg-graphite);
  color: #FFFFFF;
  padding: 50px 0 28px;
  position: relative;
  margin-top: -16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
}

.footer-brand .logo-domain {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-align: left;
}

.footer-brand .logo-tagline {
  font-family: var(--font-jp);
  color: var(--accent-aqua-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-align: left;
  margin-top: 0;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--accent-amber);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-family: var(--font-jp);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--accent-amber); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: #FFFFFF;
  border-radius: var(--radius-mid);
  box-shadow: var(--shadow-deep);
  padding: 24px;
  z-index: 500;
  border: 1px solid var(--border-soft);
}

.cookie-banner .cookie-title {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  min-height: 40px;
}

.cookie-btn.accept {
  background: var(--accent-aqua);
  color: #FFFFFF;
}

.cookie-btn.accept:hover { background: var(--accent-aqua-light); }

.cookie-btn.decline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.cookie-btn.decline:hover { background: var(--bg-base); }

.cookie-banner .cookie-links {
  margin-top: 12px;
  font-size: 12px;
}

.compact-hero {
  position: relative;
  min-height: 480px;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
}

.compact-hero .hero-title { font-size: clamp(2rem, 4vw, 3.5rem); }

.page-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin-top: 16px;
}

.detail-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-photo-stack {
  position: relative;
}

.detail-photo-main {
  border-radius: var(--radius-mid);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-soft);
}

.detail-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-photo-secondary {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-mid);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 4px solid #FFFFFF;
  z-index: 2;
}

.detail-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.detail-feature .df-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--accent-aqua);
  fill: none;
  stroke-width: 1.6;
}

.detail-feature h4 {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.detail-feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.price-card {
  background: linear-gradient(135deg, var(--accent-aqua) 0%, var(--accent-aqua-light) 100%);
  border-radius: var(--radius-mid);
  padding: 36px;
  color: #FFFFFF;
  margin-top: 24px;
}

.price-card .price-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.price-card .price-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-card .price-unit {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
}

.price-card .price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.price-card .price-list li {
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.portfolio-item {
  background: var(--bg-card);
  border-radius: var(--radius-mid);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: all 0.4s ease;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.portfolio-item .pi-photo {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.portfolio-item .pi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .pi-photo img { transform: scale(1.06); }

.portfolio-item .pi-info {
  padding: 22px 24px;
}

.portfolio-item .pi-info h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.portfolio-item .pi-info .pi-meta {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--accent-aqua);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.portfolio-item .pi-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.thanks-stage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.thanks-stage .thanks-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 151, 167, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.thanks-stage .thanks-mark svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent-aqua);
  fill: none;
  stroke-width: 2;
}

.thanks-stage h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.thanks-stage p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.7;
}

.legal-stage {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px;
}

.legal-stage h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}

.legal-stage .legal-meta {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.legal-stage h2 {
  font-size: 1.6rem;
  margin: 36px 0 14px;
  font-weight: 600;
}

.legal-stage p {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-stage ul {
  margin: 14px 0 18px 24px;
}

.legal-stage li {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.fade-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-lens {
  position: fixed;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  pointer-events: none;
  border: 2px solid var(--accent-aqua);
  background: rgba(0, 151, 167, 0.05);
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  display: none;
}

@media (min-width: 769px) {
  .cursor-lens { display: block; }
}

.cursor-lens.active { opacity: 1; }

@media (max-width: 1280px) {
  .floating-panel { width: 240px; padding: 22px 16px; }
  .main-shell { margin-left: 280px; }
  .bento-stage { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-wide { grid-column: span 2; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .advantage-card { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry { column-count: 2; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-frame { height: 50vh; min-height: 360px; }
  .editorial-stage { grid-template-columns: 1fr; gap: 40px; }
  .editorial-photo { height: 400px; }
  .detail-stage { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 200px 1fr; }
  .team-card:nth-child(even) { margin-left: 40px; }
}

@media (max-width: 768px) {
  * { overflow-wrap: break-word; }
  .floating-panel { display: none; }
  .editorial-text .drop-cap-letter {font-size: 40px;}
  .main-shell { margin-left: 0; padding-top: 56px; overflow-x: hidden; }
  .mobile-bar { display: flex; }
  .hero-stage { padding: 40px 0 60px; overflow-x: hidden; }
  .hero-photo-frame { height: 380px; min-height: 380px; }
  .hero-text-card { padding: 30px 24px; }
  .mini-gallery { position: relative; right: auto; bottom: auto; margin-top: 24px; justify-content: flex-start; overflow-x: auto; }
  .section { padding: 70px 0; overflow-x: hidden; }
  .container-wide { padding: 0 20px; max-width: 100%; overflow-x: hidden; }
  .bento-stage { grid-template-columns: 1fr; gap: 16px; overflow-x: hidden; }
  .bento-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
  .bento-wide { grid-column: span 1 !important; }
  .bento-wide .wide-overlay { position: absolute; top: auto; bottom: 16px; left: 16px; right: 16px; max-width: none; padding: 16px 20px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .advantage-card { margin-bottom: 0; }
  .advantage-card:hover { transform: none; }
  .process-stage::before { left: 24px; }
  .process-step { grid-template-columns: 1fr; gap: 0; }
  .process-step:nth-child(even) .step-card { grid-column: 1; grid-row: 1; }
  .process-step:nth-child(even) .step-spacer { display: none; }
  .step-card { margin-left: 50px; }
  .team-card { grid-template-columns: 1fr; margin-left: 0 !important; margin-bottom: 24px !important; }
  .team-photo { height: 200px; }
  .reviews-masonry { column-count: 1; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-stage { padding: 50px 20px; margin-left: 0; margin-right: 0; border-radius: var(--radius-mid); overflow-x: hidden; }
  .contact-form-card { padding: 32px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; }
  .marquee-stage { max-width: 100vw; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .marquee-track { gap: 60px; }
  .marquee-num { font-size: 40px; }
  .marquee-text { font-size: 18px; }
  .bento-cell:hover { transform: none; }
  .bento-cell:hover .hidden-content { display: none; }
  .team-card:hover .team-photo { filter: grayscale(100%); }
  .team-card:hover .team-info .bio { max-height: 0; }
  .team-card:hover { transform: none; }
  .cursor-lens { display: none !important; }
  .mini-tile { width: 80px; height: 80px; flex-shrink: 0; }
  .compact-hero { min-height: auto; padding: 60px 0 50px; }
  .editorial-stage { grid-template-columns: 1fr; }
  .editorial-photo { height: 280px; }
  .timeline-rail { padding-left: 16px; }
  .detail-stage { grid-template-columns: 1fr; gap: 32px; }
  .detail-photo-main { height: 280px; }
  .detail-photo-secondary { width: 100px; height: 100px; bottom: -12px; right: 12px; }
  .editorial-text p { font-size: 15px; }
  .drop-cap-letter { font-size: 48px; }
  .btn-row { flex-direction: column; }
  .btn-pill, .btn-outline, .btn-amber { width: 100%; justify-content: center; }
  .form-field input,
  .form-field textarea,
  .form-field select { max-width: 90%; }
  .contact-form-card.contact-form {width:90%}
}
