:root {
  --color-honey-1: #FDF6E3;
  --color-honey-2: #F5E6C8;
  --color-honey-3: #EDD9B3;
  --color-card: #FFFFFF;
  --color-ink: #4A3728;
  --color-ink-soft: #7A6B5C;
  --color-gold: #C9A227;
  --color-gold-deep: #B8860B;
  --color-gold-line: #E8D4A8;
  --color-saffron: #E8C872;
  --color-pale: #FAF3E3;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Libre Baskerville', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-2xl: 32px;
  --radius-dock: 40px;

  --shadow-soft: 0 8px 24px rgba(74, 55, 40, 0.08);
  --shadow-glow: 0 12px 32px rgba(201, 162, 39, 0.25);
  --shadow-card: 0 18px 48px rgba(74, 55, 40, 0.12);

  --dock-width: 280px;
  --dock-collapsed: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-ink);
  background: linear-gradient(135deg, var(--color-honey-1) 0%, var(--color-honey-2) 50%, var(--color-honey-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

strong, p, b, span, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  color: var(--color-gold-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-ink);
}

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

::selection {
  background: var(--color-gold);
  color: var(--color-card);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(232, 212, 168, 0.2);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 8px;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.kogado-dock {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--dock-width);
  height: 100vh;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 3px solid var(--color-gold);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: width 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.kogado-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-gold-line);
}

.kogado-logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  position: relative;
  flex-shrink: 0;
}

.kogado-logo-mark svg {
  width: 30px;
  height: 30px;
  fill: var(--color-card);
}

.kogado-logo-domain {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  writing-mode: horizontal-tb;
  text-transform: lowercase;
}

.kogado-logo-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.kogado-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.kogado-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.kogado-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink);
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
}

.kogado-nav-link:hover,
.kogado-nav-link.active {
  background: var(--color-gold);
  color: var(--color-card);
  transform: translateX(4px);
}

.kogado-nav-link-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

.kogado-cta-dock {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-card);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  min-height: 44px;
}

.kogado-cta-dock:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.4);
  color: var(--color-card);
}

.kogado-mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--color-gold);
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  z-index: 1100;
}

.kogado-mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kogado-mobile-logo .kogado-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.kogado-mobile-logo .kogado-logo-mark svg {
  width: 22px;
  height: 22px;
}

.kogado-mobile-logo-text {
  display: flex;
  flex-direction: column;
}

.kogado-mobile-logo-domain {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-ink-soft);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.kogado-mobile-logo-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
  line-height: 1;
  margin-top: 2px;
}

.kogado-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200;
}

.kogado-burger span {
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.kogado-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background: var(--color-gold);
}

.kogado-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.kogado-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background: var(--color-gold);
}

.kogado-mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(253, 246, 227, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 80px 24px;
}

.kogado-mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.kogado-mobile-drawer::before,
.kogado-mobile-drawer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}

.kogado-mobile-drawer::before {
  width: 320px;
  height: 320px;
  background: var(--color-saffron);
  top: 10%;
  left: -120px;
  animation: kogado-float-1 14s ease-in-out infinite;
}

.kogado-mobile-drawer::after {
  width: 380px;
  height: 380px;
  background: var(--color-gold);
  bottom: 8%;
  right: -150px;
  animation: kogado-float-2 18s ease-in-out infinite;
}

.kogado-mobile-drawer .kogado-nav-link {
  font-family: var(--font-serif);
  font-size: 32px;
  padding: 12px 24px;
  opacity: 0;
  transform: translateY(-20px);
  animation: kogado-stagger 0.5s ease forwards;
}

.kogado-mobile-drawer.open .kogado-nav-link:nth-child(1) { animation-delay: 0.05s; }
.kogado-mobile-drawer.open .kogado-nav-link:nth-child(2) { animation-delay: 0.13s; }
.kogado-mobile-drawer.open .kogado-nav-link:nth-child(3) { animation-delay: 0.21s; }
.kogado-mobile-drawer.open .kogado-nav-link:nth-child(4) { animation-delay: 0.29s; }
.kogado-mobile-drawer.open .kogado-nav-link:nth-child(5) { animation-delay: 0.37s; }
.kogado-mobile-drawer.open .kogado-nav-link:nth-child(6) { animation-delay: 0.45s; }

.kogado-mobile-drawer .kogado-cta-dock {
  margin-top: 24px;
  padding: 18px 36px;
  font-size: 16px;
}

@keyframes kogado-stagger {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes kogado-float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(60px, 80px) rotate(180deg); }
}

@keyframes kogado-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-80px, -60px) rotate(-180deg); }
}

.kogado-main {
  margin-left: var(--dock-width);
  min-height: 100vh;
  position: relative;
}

.kogado-hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8% 80px 6%;
  overflow: hidden;
  gap: 60px;
}

.kogado-hero::before,
.kogado-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.kogado-hero::before {
  width: 520px;
  height: 520px;
  background: var(--color-saffron);
  top: -120px;
  left: 5%;
  animation: kogado-float-1 28s ease-in-out infinite;
  opacity: 0.6;
}

.kogado-hero::after {
  width: 480px;
  height: 480px;
  background: var(--color-gold);
  bottom: -160px;
  right: 18%;
  animation: kogado-float-2 36s ease-in-out infinite;
  opacity: 0.5;
}

.kogado-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(232, 212, 168, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232, 212, 168, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.kogado-hero-content {
  flex: 1.1;
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.kogado-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-gold-deep);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-gold-line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.kogado-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 24px;
  word-spacing: 0.05em;
}

.kogado-hero h1 span {
  display: block;
  font-style: italic;
  color: var(--color-gold-deep);
  font-weight: 500;
}

.kogado-hero-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-ink-soft);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

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

.kogado-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 44px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-card);
  border: none;
  border-radius: var(--radius-2xl);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 56px;
  white-space: nowrap;
}

.kogado-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(201, 162, 39, 0.5);
  color: var(--color-card);
}

.kogado-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 44px;
  background: var(--color-card);
  color: var(--color-gold-deep);
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-2xl);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 56px;
  white-space: nowrap;
}

.kogado-btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-card);
  transform: translateY(-3px);
}

.kogado-hero-visual {
  flex: 0.9;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.kogado-hero-orb {
  position: relative;
  width: 460px;
  height: 460px;
  max-width: 100%;
  aspect-ratio: 1;
}

.kogado-hero-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-gold-line);
  opacity: 0.4;
  animation: kogado-spin 30s linear infinite;
}

.kogado-hero-orb-ring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 24px var(--color-gold);
}

.kogado-hero-orb-ring:nth-child(2) {
  inset: 40px;
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: 0.6;
}

.kogado-hero-orb-ring:nth-child(3) {
  inset: 90px;
  animation-duration: 16s;
  opacity: 0.8;
}

.kogado-hero-orb-core {
  position: absolute;
  inset: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  box-shadow: 0 30px 80px rgba(201, 162, 39, 0.45), inset 0 -20px 40px rgba(74, 55, 40, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kogado-hero-orb-core::after {
  content: '';
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 60%);
}

.kogado-hero-orb-icon {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kogado-hero-orb-icon svg {
  width: 80%;
  height: 80%;
  fill: var(--color-card);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

@keyframes kogado-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.kogado-section {
  padding: 120px 8% 120px 6%;
  position: relative;
}

.kogado-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.kogado-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-gold-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.kogado-section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.kogado-section h2 span {
  font-style: italic;
  color: var(--color-gold-deep);
}

.kogado-section-lead {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-ink-soft);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.kogado-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.kogado-bento-cell {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-gold-line);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kogado-bento-cell:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 3px var(--color-gold);
  z-index: 10;
}

.kogado-bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.kogado-bento-wide {
  grid-column: span 2;
}

.kogado-bento-tall {
  grid-row: span 2;
}

.kogado-bento-cell-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 56px;
  color: var(--color-gold);
  line-height: 1;
}

.kogado-bento-cell h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.kogado-bento-cell p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.kogado-bento-cell-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
}

.kogado-bento-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,55,40,0.1) 0%, rgba(74,55,40,0.85) 100%);
  z-index: 1;
}

.kogado-bento-cell-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--color-card);
}

.kogado-bento-cell-content h3 {
  color: var(--color-card);
  font-size: 26px;
  margin-bottom: 6px;
}

.kogado-bento-cell-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.kogado-bento-cell-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--color-gold);
  color: var(--color-card);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.kogado-bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-deep);
  margin-top: 14px;
  letter-spacing: 0.03em;
}

.kogado-bento-link:hover {
  color: var(--color-ink);
  gap: 12px;
}

.kogado-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.kogado-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold-line);
  transform: translateX(-50%);
}

.kogado-timeline-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.5s ease-out;
}

.kogado-timeline.in-view .kogado-timeline-line::after {
  transform: scaleY(1);
}

.kogado-timeline-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.kogado-timeline-step:nth-child(even) .kogado-timeline-content {
  grid-column: 1;
  text-align: right;
}

.kogado-timeline-step:nth-child(even) .kogado-timeline-spacer {
  grid-column: 3;
}

.kogado-timeline-step:nth-child(odd) .kogado-timeline-content {
  grid-column: 3;
}

.kogado-timeline-step:nth-child(odd) .kogado-timeline-spacer {
  grid-column: 1;
}

.kogado-timeline-node {
  grid-column: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-card);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-gold-deep);
  box-shadow: var(--shadow-glow);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.kogado-timeline-step:hover .kogado-timeline-node {
  transform: scale(1.1);
  background: var(--color-gold);
  color: var(--color-card);
}

.kogado-timeline-content {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-gold-line);
  transition: all 0.3s ease;
}

.kogado-timeline-step:hover .kogado-timeline-content {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.kogado-timeline-content h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.kogado-timeline-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.kogado-marquee {
  overflow: hidden;
  padding: 60px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.kogado-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: kogado-marquee-scroll 40s linear infinite;
}

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

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

.kogado-marquee-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-gold-line);
  transition: all 0.3s ease;
}

.kogado-marquee-card:hover {
  transform: scale(1.04) translateY(-6px);
  z-index: 10;
  box-shadow: var(--shadow-card);
}

.kogado-marquee-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.kogado-marquee-card-body {
  padding: 20px 22px;
}

.kogado-marquee-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.kogado-marquee-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.kogado-marquee-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kogado-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.kogado-split-sticky {
  position: sticky;
  top: 80px;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.kogado-split-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74,55,40,0.6) 100%);
}

.kogado-split-content h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: 24px;
}

.kogado-split-content p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

.kogado-split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--color-gold-line);
}

.kogado-split-stat-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  color: var(--color-gold);
  line-height: 1;
}

.kogado-split-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  margin-top: 8px;
}

.kogado-flexgrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  transition: grid-template-columns 0.4s ease;
}

.kogado-flexgrow-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-gold-line);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.kogado-flexgrow-card:hover {
  transform: scale(1.04) translateY(-6px);
  z-index: 10;
  box-shadow: var(--shadow-card);
  border-color: var(--color-gold);
}

.kogado-flexgrow-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 44px;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 20px;
}

.kogado-flexgrow-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.kogado-flexgrow-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.kogado-team {
  max-width: 1100px;
  margin: 0 auto;
}

.kogado-team-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-gold-line);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.kogado-team-row:first-child {
  border-top: 1px solid var(--color-gold-line);
}

.kogado-team-row:hover {
  padding-left: 16px;
  z-index: 10;
}

.kogado-team-row:hover .kogado-team-name {
  color: var(--color-gold-deep);
  font-style: italic;
}

.kogado-team-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: all 0.3s ease;
}

.kogado-team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.kogado-team-year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-gold-deep);
  text-align: right;
  letter-spacing: 0.04em;
}

.kogado-team-tooltip {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%) translateX(20px);
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 20;
  border: 1px solid var(--color-gold);
  pointer-events: none;
}

.kogado-team-row:hover .kogado-team-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.kogado-team-tooltip-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
}

.kogado-team-tooltip-info h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.kogado-team-tooltip-info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink-soft);
}

.kogado-coverflow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1400px;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kogado-coverflow-track {
  position: relative;
  width: 100%;
  height: 420px;
}

.kogado-coverflow-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-gold-line);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translate(-50%, -50%);
  color: var(--color-ink);
}

.kogado-coverflow-card[data-pos="0"] {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.kogado-coverflow-card[data-pos="-1"] {
  z-index: 2;
  opacity: 0.7;
  transform: translate(-110%, -50%) scale(0.85) rotateY(15deg);
  filter: brightness(0.95);
}

.kogado-coverflow-card[data-pos="1"] {
  z-index: 2;
  opacity: 0.7;
  transform: translate(10%, -50%) scale(0.85) rotateY(-15deg);
  filter: brightness(0.95);
}

.kogado-coverflow-card[data-pos="-2"] {
  z-index: 1;
  opacity: 0.3;
  transform: translate(-160%, -50%) scale(0.7) rotateY(20deg);
}

.kogado-coverflow-card[data-pos="2"] {
  z-index: 1;
  opacity: 0.3;
  transform: translate(60%, -50%) scale(0.7) rotateY(-20deg);
}

.kogado-coverflow-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.kogado-coverflow-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.kogado-coverflow-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.kogado-coverflow-author {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-ink);
}

.kogado-coverflow-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.kogado-coverflow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-card);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.kogado-coverflow-btn:hover {
  background: var(--color-gold);
  color: var(--color-card);
}

.kogado-coverflow-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.kogado-coverflow-prev {
  left: -10px;
}

.kogado-coverflow-next {
  right: -10px;
}

.kogado-faq {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kogado-faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold-line);
  overflow: hidden;
  transition: all 0.3s ease;
}

.kogado-faq-item[open] {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.kogado-faq-summary {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
  list-style: none;
  transition: color 0.25s ease;
  background: var(--color-card);
  border: none;
  width: 100%;
  text-align: left;
}

.kogado-faq-summary::-webkit-details-marker {
  display: none;
}

.kogado-faq-summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.kogado-faq-item[open] .kogado-faq-summary::after {
  transform: rotate(45deg);
}

.kogado-faq-answer {
  padding: 0 28px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.kogado-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.kogado-contact-form {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-gold-line);
}

.kogado-contact-form h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.kogado-contact-form-lead {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-soft);
  margin-bottom: 32px;
}

.kogado-form-row {
  margin-bottom: 24px;
}

.kogado-form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kogado-form-row input,
.kogado-form-row textarea,
.kogado-form-row select {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--color-gold-line);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  transition: border-color 0.25s ease;
  border-radius: 0;
}

.kogado-form-row input::placeholder,
.kogado-form-row textarea::placeholder {
  color: var(--color-ink-soft);
  opacity: 0.6;
}

.kogado-form-row input:focus,
.kogado-form-row textarea:focus,
.kogado-form-row select:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}

.kogado-form-row textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-body);
}

.kogado-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-card);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
  margin-top: 12px;
  min-height: 52px;
}

.kogado-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.45);
}

.kogado-contact-info {
  padding: 24px 0;
}

.kogado-contact-info h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--color-ink);
  margin-bottom: 28px;
  line-height: 1.2;
}

.kogado-contact-block {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gold-line);
  transition: all 0.3s ease;
}

.kogado-contact-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-gold);
}

.kogado-contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-gold-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kogado-contact-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-ink);
  line-height: 1.3;
}

.kogado-contact-value a {
  color: var(--color-ink);
  text-decoration: none;
}

.kogado-contact-value a:hover {
  color: var(--color-gold-deep);
}

.kogado-contact-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink-soft);
  margin-top: 4px;
  line-height: 1.5;
}

.kogado-cta-strip {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  padding: 72px 8%;
  text-align: center;
  color: var(--color-card);
  position: relative;
  overflow: hidden;
}

.kogado-cta-strip::before,
.kogado-cta-strip::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
}

.kogado-cta-strip::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.kogado-cta-strip::after {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -120px;
}

.kogado-cta-strip h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-card);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.kogado-cta-strip p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.kogado-cta-strip .kogado-btn-secondary {
  background: var(--color-card);
  color: var(--color-gold-deep);
  border-color: var(--color-card);
  position: relative;
  z-index: 1;
}

.kogado-cta-strip .kogado-btn-secondary:hover {
  background: var(--color-ink);
  color: var(--color-card);
  border-color: var(--color-ink);
}

.kogado-footer {
  background: var(--color-gold);
  color: var(--color-card);
  padding: 80px 32px 32px 320px;
  border-radius: var(--radius-dock) var(--radius-dock) 0 0;
  position: relative;
  z-index: 5;
}

.kogado-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

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

.kogado-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kogado-footer-logo .kogado-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-card);
}

.kogado-footer-logo .kogado-logo-mark svg {
  fill: var(--color-gold-deep);
}

.kogado-footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-card);
  line-height: 1.1;
}

.kogado-footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 360px;
}

.kogado-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-card);
  margin-bottom: 18px;
}

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

.kogado-footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.kogado-footer-col a:hover {
  color: var(--color-card);
  text-decoration: underline;
}

.kogado-footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.kogado-footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.kogado-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.kogado-footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
}

.kogado-footer-legal a:hover {
  color: var(--color-card);
  text-decoration: underline;
}

.kogado-footer-address {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  font-style: normal;
}

.kogado-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 24px 56px rgba(74, 55, 40, 0.18);
  border: 1px solid var(--color-gold);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-ink);
}

.kogado-cookie-banner h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kogado-cookie-banner p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink-soft);
  line-height: 1.55;
}

.kogado-cookie-banner p a {
  color: var(--color-gold-deep);
  text-decoration: underline;
}

.kogado-cookie-banner-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.kogado-cookie-btn {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: all 0.25s ease;
}

.kogado-cookie-accept {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-card);
}

.kogado-cookie-accept:hover {
  box-shadow: var(--shadow-glow);
}

.kogado-cookie-decline {
  background: transparent;
  border: 2px solid var(--color-gold-line);
  color: var(--color-ink-soft);
}

.kogado-cookie-decline:hover {
  border-color: var(--color-gold);
  color: var(--color-ink);
}

.kogado-trail-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.kogado-scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.kogado-scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.kogado-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.kogado-thanks-card {
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  padding: 64px 56px;
  text-align: center;
  max-width: 600px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-gold);
}

.kogado-thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.kogado-thanks-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-card);
}

.kogado-thanks h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 42px;
  color: var(--color-ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.kogado-thanks p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.kogado-policy {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 6%;
}

.kogado-policy h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.kogado-policy-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gold-line);
}

.kogado-policy h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-ink);
  margin: 36px 0 14px;
}

.kogado-policy p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.kogado-policy ul {
  margin: 12px 0 20px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.9;
}

.kogado-mini-hero {
  padding: 140px 6% 80px;
  text-align: center;
  position: relative;
}

.kogado-mini-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.kogado-mini-hero p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-ink-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.kogado-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.kogado-portfolio-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gold-line);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  color: var(--color-ink);
}

.kogado-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-gold);
}

.kogado-portfolio-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.kogado-portfolio-body {
  padding: 24px;
}

.kogado-portfolio-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.kogado-portfolio-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-gold-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kogado-portfolio-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.kogado-portfolio-card .kogado-bento-link {
  margin-top: 14px;
}

.kogado-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.kogado-detail-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 80px;
}

.kogado-detail-body h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.kogado-detail-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-card);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.kogado-detail-body p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}

.kogado-detail-body h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--color-ink);
  margin: 32px 0 14px;
}

.kogado-detail-body ul {
  margin: 8px 0 20px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .kogado-dock {
    display: none;
  }
  .kogado-mobile-bar {
    display: flex;
  }
  .kogado-main {
    margin-left: 0;
  }
  .kogado-hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }
  .kogado-hero-content {
    max-width: 100%;
  }
  .kogado-hero-cta {
    justify-content: center;
  }
  .kogado-hero-orb {
    width: 320px;
    height: 320px;
  }
  .kogado-section {
    padding: 80px 24px;
  }
  .kogado-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .kogado-bento-large {
    grid-column: span 2;
  }
  .kogado-bento-wide {
    grid-column: span 2;
  }
  .kogado-flexgrow {
    grid-template-columns: 1fr;
  }
  .kogado-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kogado-split-sticky {
    position: relative;
    top: 0;
    height: 360px;
  }
  .kogado-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kogado-footer {
    padding: 80px 8% 32px;
  }
  .kogado-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .kogado-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kogado-detail-layout {
    grid-template-columns: 1fr;
  }
  .kogado-detail-img {
    position: relative;
    top: 0;
    aspect-ratio: 16/10;
  }
  .kogado-timeline-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .kogado-timeline-line {
    left: 30px;
    transform: none;
  }
  .kogado-timeline-node {
    grid-column: 1;
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .kogado-timeline-step:nth-child(odd) .kogado-timeline-content,
  .kogado-timeline-step:nth-child(even) .kogado-timeline-content {
    grid-column: 2;
    text-align: left;
  }
  .kogado-timeline-step:nth-child(odd) .kogado-timeline-spacer,
  .kogado-timeline-step:nth-child(even) .kogado-timeline-spacer {
    display: none;
  }
  .kogado-team-tooltip {
    display: none;
  }
  .kogado-coverflow-card {
    width: 86vw;
    max-width: 360px;
    padding: 28px 24px;
  }
  .kogado-coverflow-card[data-pos="-1"],
  .kogado-coverflow-card[data-pos="1"],
  .kogado-coverflow-card[data-pos="-2"],
  .kogado-coverflow-card[data-pos="2"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .kogado-bento {
    grid-template-columns: 1fr;
  }
  .kogado-bento-large,
  .kogado-bento-wide,
  .kogado-bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .kogado-hero h1 {
    font-size: 36px;
  }
  .kogado-hero-orb {
    width: 240px;
    height: 240px;
  }
  .kogado-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .kogado-btn-primary,
  .kogado-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .kogado-contact-form {
    padding: 32px 24px;
  }
  .kogado-footer {
    padding: 80px 8% 32px;
  }
  .kogado-footer-top {
    grid-template-columns: 1fr;
  }
  .kogado-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .kogado-coverflow-card {
    width: 88vw;
    padding: 24px 20px;
  }
  .kogado-thanks-card {
    padding: 40px 24px;
  }
  .kogado-thanks h1 {
    font-size: 30px;
  }
  .kogado-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .kogado-cookie-banner-btns {
    flex-direction: column;
  }
}
