:root {
  --kobo-amber: #C4A35A;
  --kobo-amber-light: #D4B896;
  --kobo-antique: #5D4E37;
  --kobo-antique-soft: #8B7355;
  --kobo-sage: #9CAF88;
  --kobo-lavender: #E8DCC8;
  --kobo-border: #D4C4A8;
  --kobo-cream: #FFFDF8;
  --kobo-cream-soft: #FFF5EB;
  --kobo-mist: #FFF8F0;
  --kobo-peach: #FFCBA4;
  --kobo-terra: #C67B5C;
}

strong, p {
  color: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--kobo-antique);
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E6 50%, #F5E6D3 100%);
  overflow-x: hidden;
  scroll-behavior: smooth;
  box-sizing: border-box;
  max-width: 100vw;
}

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

body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 90, 0.4);
  border-radius: 24px;
}

.font-cormorant { font-family: 'Cormorant Garamond', 'Yu Mincho', serif; }
.font-nunito { font-family: 'Nunito Sans', 'Hiragino Kaku Gothic ProN', sans-serif; }
.font-crimson { font-family: 'Crimson Pro', 'Yu Mincho', serif; }

.kobo-gradient-mist {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E6 50%, #F5E6D3 100%);
}
.kobo-gradient-amber {
  background: linear-gradient(135deg, #C4A35A 0%, #D4B896 100%);
}
.kobo-gradient-antique {
  background: linear-gradient(135deg, #5D4E37 0%, #8B7355 100%);
}

.kobo-text-amber { color: var(--kobo-amber); }
.kobo-text-antique { color: var(--kobo-antique); }
.kobo-text-soft { color: var(--kobo-antique-soft); }
.kobo-text-sage { color: var(--kobo-sage); }
.kobo-bg-cream { background-color: var(--kobo-cream); }
.kobo-bg-soft { background-color: var(--kobo-cream-soft); }
.kobo-border-warm { border-color: var(--kobo-border); }

.kobo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.kobo-blob-amber { background: var(--kobo-amber); }
.kobo-blob-terra { background: var(--kobo-terra); }
.kobo-blob-sage { background: var(--kobo-sage); }
.kobo-blob-cream { background: #FFF0E6; }

@keyframes drift-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-50px, 50px) scale(0.95); }
}
@keyframes drift-mid {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 60px) scale(1.05); }
}
@keyframes drift-fast {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -30px); }
}

.drift-slow { animation: drift-slow 28s ease-in-out infinite; }
.drift-mid { animation: drift-mid 32s ease-in-out infinite; }
.drift-fast { animation: drift-fast 24s ease-in-out infinite; }

.floating-panel {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 240px;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--kobo-border);
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(93, 78, 55, 0.1);
  padding: 24px 18px;
  z-index: 50;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.floating-panel::-webkit-scrollbar {
  width: 4px;
}
.floating-panel::-webkit-scrollbar-thumb {
  background: var(--kobo-amber);
  border-radius: 24px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 2px solid var(--kobo-border);
  background: linear-gradient(135deg, #C4A35A, #9CAF88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFDF8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  margin: 0 auto 14px;
  box-shadow: 0 6px 18px rgba(196, 163, 90, 0.3);
}

.kobo-nav-link {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--kobo-antique);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 4px;
  line-height: 1.3;
}
.kobo-nav-link:hover,
.kobo-nav-link.active {
  background: rgba(196, 163, 90, 0.15);
  color: var(--kobo-amber);
  border-left-color: var(--kobo-amber);
  transform: translateX(2px);
}

.kobo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C4A35A, #D4B896);
  color: #FFFDF8;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  border: none;
  border-radius: 28px;
  padding: 14px 28px;
  font-size: 17px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(196, 163, 90, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.kobo-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 40px rgba(196, 163, 90, 0.55);
  color: #FFFDF8;
}

.kobo-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--kobo-cream);
  color: var(--kobo-amber);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  border: 2px solid var(--kobo-amber);
  border-radius: 28px;
  padding: 12px 26px;
  font-size: 17px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.kobo-ghost-btn:hover {
  background: rgba(196, 163, 90, 0.12);
  color: var(--kobo-amber);
  transform: translateY(-2px);
}

.kobo-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
}

.kobo-section-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--kobo-amber), var(--kobo-sage), transparent);
  border-radius: 24px;
  opacity: 0.6;
  margin: 0 auto;
}

.kobo-card {
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(93, 78, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  color: var(--kobo-antique);
}
.kobo-card:hover {
  z-index: 15;
  position: relative;
  transform: scale(1.04);
  border: 2px solid var(--kobo-amber);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(196, 163, 90, 0.2);
}

.kobo-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  color: var(--kobo-antique);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.kobo-eyebrow {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kobo-amber);
  font-style: italic;
}

.kobo-body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--kobo-antique);
  font-size: 15px;
  line-height: 1.75;
}

.kobo-quote {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  color: var(--kobo-antique-soft);
  font-size: 17px;
  line-height: 1.7;
}

.kobo-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--kobo-border);
  padding: 12px 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--kobo-antique);
  outline: none;
  transition: border-color 0.3s ease;
}
.kobo-input::placeholder {
  color: var(--kobo-antique-soft);
  opacity: 0.6;
}
.kobo-input:focus {
  border-bottom-color: var(--kobo-amber);
}
.kobo-input:focus + .kobo-input-label,
.kobo-input:not(:placeholder-shown) + .kobo-input-label {
  color: var(--kobo-amber);
  font-size: 10px;
  top: -10px;
}
.kobo-input-wrap {
  position: relative;
  margin-bottom: 28px;
}
.kobo-input-label {
  position: absolute;
  top: 12px;
  left: 0;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--kobo-antique-soft);
  pointer-events: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.kobo-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.kobo-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.kobo-mobile-topbar {
  display: none;
}

.kobo-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 2px solid var(--kobo-border);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(20px);
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 110;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}
.kobo-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--kobo-antique);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.kobo-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.kobo-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.kobo-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.kobo-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E6 100%);
  z-index: 105;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 32px;
  overflow-y: auto;
  box-shadow: 0 0 80px rgba(93, 78, 55, 0.15);
}
.kobo-mobile-drawer.open {
  transform: translateX(0);
}
.kobo-mobile-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: var(--kobo-amber);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
.kobo-mobile-drawer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: var(--kobo-sage);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
.kobo-mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(93, 78, 55, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.kobo-mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.kobo-mobile-drawer .kobo-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  padding: 14px 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.kobo-mobile-drawer .kobo-nav-link::before {
  content: attr(data-num);
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--kobo-amber);
  font-style: normal;
  min-width: 28px;
}

.kobo-page-content {
  margin-left: 288px;
  min-height: 100vh;
}

.kobo-hero {
  min-height: calc(100vh - 0px);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.kobo-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.25;
  pointer-events: none;
}

.kobo-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.kobo-bento-lg { grid-column: span 2; grid-row: span 2; }
.kobo-bento-md-tall { grid-column: span 1; grid-row: span 2; }
.kobo-bento-md-wide { grid-column: span 2; grid-row: span 1; }
.kobo-bento-sm { grid-column: span 1; grid-row: span 1; }
.kobo-bento-accent { grid-column: span 2; grid-row: span 1; }

.kobo-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 100px;
}
.kobo-timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--kobo-amber), var(--kobo-sage));
  border-radius: 24px;
}
.kobo-timeline-node {
  position: absolute;
  left: -150px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--kobo-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Crimson Pro', serif;
  color: #FFFDF8;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}
.kobo-timeline-node:hover {
  transform: scale(1.2);
  z-index: 15;
  box-shadow: 0 12px 32px rgba(196, 163, 90, 0.5);
}
.kobo-timeline-node.node-sage { background: var(--kobo-sage); }
.kobo-timeline-card {
  margin-bottom: 60px;
  position: relative;
  margin-left: 60px;
}
.kobo-timeline-card .kobo-card {
  margin-left: -36px;
}

.kobo-masonry {
  column-count: 3;
  column-gap: 24px;
}
.kobo-masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  box-shadow: 0 16px 48px rgba(93, 78, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.kobo-masonry-item:hover {
  z-index: 15;
  transform: scale(1.04);
  border-color: var(--kobo-amber);
  border-width: 2px;
  box-shadow: 0 20px 56px rgba(196, 163, 90, 0.2);
}

.kobo-faq-item {
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kobo-faq-item:hover {
  background: var(--kobo-cream-soft);
  border-left: 4px solid var(--kobo-sage);
}
.kobo-faq-item.open {
  z-index: 15;
  position: relative;
  border-color: var(--kobo-amber);
  box-shadow: 0 16px 48px rgba(196, 163, 90, 0.15);
}
.kobo-faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--kobo-antique);
  user-select: none;
  gap: 16px;
}
.kobo-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kobo-amber);
  font-size: 20px;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kobo-faq-item.open .kobo-faq-icon {
  transform: rotate(45deg);
  background: var(--kobo-amber);
  color: #FFFDF8;
}
.kobo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.kobo-faq-item.open .kobo-faq-answer {
  max-height: 600px;
}
.kobo-faq-answer-inner {
  padding: 0 28px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--kobo-antique-soft);
}

.kobo-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 460px;
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(93, 78, 55, 0.2);
  z-index: 200;
  backdrop-filter: blur(10px);
}
.kobo-cookie-banner.hidden {
  display: none;
}
.kobo-cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--kobo-antique);
  margin: 0 0 8px;
}
.kobo-cookie-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  color: var(--kobo-antique-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.kobo-cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.kobo-cookie-btn {
  padding: 10px 18px;
  border-radius: 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.kobo-cookie-btn-accept {
  background: linear-gradient(135deg, #C4A35A, #D4B896);
  color: #FFFDF8;
}
.kobo-cookie-btn-decline {
  background: transparent;
  color: var(--kobo-antique);
  border: 1px solid var(--kobo-border);
}
.kobo-cookie-link {
  color: var(--kobo-amber);
  text-decoration: underline;
  font-size: 12px;
  display: block;
  margin-top: 12px;
}

.kobo-footer {
  background: var(--kobo-antique);
  color: #FFFDF8;
  padding: 80px 40px 40px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--kobo-amber);
  border-radius: 24px 24px 0 0;
}
.kobo-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--kobo-amber);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: drift-slow 35s ease-in-out infinite;
}
.kobo-footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: var(--kobo-sage);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: drift-mid 40s ease-in-out infinite;
}
.kobo-footer a {
  color: #FFFDF8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.kobo-footer a:hover {
  color: var(--kobo-amber);
}
.kobo-footer-divider {
  width: 80px;
  height: 2px;
  background: var(--kobo-amber);
  border-radius: 24px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.kobo-craft-list {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--kobo-amber) transparent;
}
.kobo-craft-list::-webkit-scrollbar { height: 6px; }
.kobo-craft-list::-webkit-scrollbar-thumb {
  background: var(--kobo-amber);
  border-radius: 24px;
}
.kobo-craft-chip {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 24px;
  border: 1px solid var(--kobo-border);
  background: var(--kobo-cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--kobo-antique);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.kobo-craft-chip:hover,
.kobo-craft-chip.active {
  background: var(--kobo-amber);
  color: #FFFDF8;
  border-color: var(--kobo-amber);
}

.kobo-coverflow {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 32px 12px;
  scroll-snap-type: x mandatory;
  perspective: 1200px;
  scrollbar-width: thin;
}
.kobo-coverflow::-webkit-scrollbar { height: 8px; }
.kobo-coverflow::-webkit-scrollbar-thumb { background: var(--kobo-amber); border-radius: 24px; }
.kobo-coverflow-card {
  flex: 0 0 360px;
  height: 460px;
  scroll-snap-align: center;
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--kobo-antique);
}
.kobo-coverflow-card:hover {
  z-index: 20;
  transform: scale(1.04);
  border-color: var(--kobo-amber);
  border-width: 2px;
  box-shadow: 0 20px 56px rgba(196, 163, 90, 0.25);
}
.kobo-coverflow-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 600;
  color: var(--kobo-amber);
  line-height: 1;
  margin-bottom: 18px;
}

.kobo-team-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kobo-team-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--kobo-antique);
  padding: 14px 20px;
  border-radius: 0 16px 16px 0;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1.3;
}
.kobo-team-name:hover,
.kobo-team-name.active {
  background: rgba(196, 163, 90, 0.1);
  border-left-color: var(--kobo-amber);
  z-index: 15;
  position: relative;
}
.kobo-team-name small {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--kobo-amber);
  margin-top: 4px;
}

.kobo-flex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kobo-flex-card {
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  color: var(--kobo-antique);
}
.kobo-flex-card:hover {
  z-index: 20;
  transform: scale(1.04);
  border-color: var(--kobo-amber);
  border-width: 2px;
  box-shadow: 0 16px 48px rgba(196, 163, 90, 0.2);
}
.kobo-stars {
  color: var(--kobo-amber);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 14px;
}

.kobo-split-screen {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  border-radius: 0;
  overflow: hidden;
}
.kobo-split-left {
  background: var(--kobo-cream);
  padding: 64px;
  border-radius: 0 0 0 48px;
  color: var(--kobo-antique);
}
.kobo-split-right {
  background: var(--kobo-antique);
  color: #FFFDF8;
  padding: 64px;
  border-radius: 0 0 48px 0;
  position: relative;
}
.kobo-split-right .kobo-text-amber {
  color: var(--kobo-amber);
}

.kobo-form-field {
  position: relative;
  margin-bottom: 32px;
}

.kobo-wave-line {
  height: 3px;
  background: linear-gradient(90deg, var(--kobo-amber), var(--kobo-sage), transparent);
  border-radius: 24px;
  opacity: 0.5;
  width: 200px;
}

.kobo-sticky-image {
  position: sticky;
  top: 40px;
  height: fit-content;
  border-radius: 0 48px 48px 0;
  overflow: hidden;
}

.kobo-img-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--kobo-border);
  background: var(--kobo-cream);
}

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

.kobo-svg-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
}

.kobo-pill-stat {
  display: inline-flex;
  flex-direction: column;
  padding: 18px 28px;
  background: var(--kobo-cream);
  border: 1px solid var(--kobo-border);
  border-radius: 24px;
  align-items: flex-start;
}

.kobo-pin {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kobo-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFDF8;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(196, 163, 90, 0.4);
}

.kobo-progress-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kobo-amber);
  margin: 0 6px;
  vertical-align: middle;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .floating-panel { display: none; }
  .kobo-burger { display: flex; }
  .kobo-mobile-topbar { display: flex; }
  .kobo-page-content { margin-left: 0; width: 100%; max-width: 100vw; overflow-x: hidden; }
  .kobo-hero { padding: 100px 28px 60px; overflow-x: hidden; }
  .kobo-section { padding: 60px 24px; overflow-x: hidden; }
  .kobo-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .kobo-bento-lg { grid-column: span 2; grid-row: span 2; }
  .kobo-bento-md-tall { grid-column: span 1; grid-row: span 1; }
  .kobo-bento-md-wide { grid-column: span 2; }
  .kobo-masonry { column-count: 1; }
  .kobo-flex-grid { grid-template-columns: 1fr; }
  .kobo-split-screen { grid-template-columns: 1fr; }
  .kobo-split-left, .kobo-split-right {
    border-radius: 0;
    padding: 40px 24px;
  }
  .kobo-timeline { padding-left: 60px; }
  .kobo-timeline-line { left: 24px; }
  .kobo-timeline-node { left: -90px; width: 56px; height: 56px; font-size: 16px; }
  .kobo-timeline-card { margin-left: 30px; }
  .kobo-coverflow-card { flex: 0 0 280px; height: 420px; padding: 28px; }
  .kobo-coverflow-num { font-size: 42px; }
  .kobo-cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; }
  .kobo-footer { padding: 60px 24px 24px; }
}

@media (max-width: 640px) {
  .kobo-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .kobo-bento-lg, .kobo-bento-md-tall, .kobo-bento-md-wide, .kobo-bento-sm, .kobo-bento-accent {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
  .kobo-section { padding: 48px 18px; }
  .kobo-hero { padding: 90px 18px 50px; }
  .kobo-cta-btn, .kobo-ghost-btn { padding: 14px 22px; font-size: 15px; }
  .kobo-cookie-banner { padding: 18px; }
  .kobo-coverflow-card { flex: 0 0 240px; height: 380px; padding: 24px; }
  .kobo-coverflow-num { font-size: 36px; }
  .kobo-page-content { margin-left: 0; width: 100%; max-width: 100%; overflow-x: hidden; }
  .kobo-split-left, .kobo-split-right { padding: 32px 18px; }
  .kobo-mobile-drawer { width: 90%; max-width: none; }
}

.kobo-service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .kobo-service-detail-grid { grid-template-columns: 1fr; }
}

.kobo-process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .kobo-process-row { grid-template-columns: 1fr; gap: 28px; }
}

.kobo-stat-pill {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.kobo-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  color: var(--kobo-amber);
  line-height: 1;
}
.kobo-stat-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: var(--kobo-antique-soft);
  letter-spacing: 0.06em;
}

.kobo-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.kobo-inline-pill {
  padding: 8px 16px;
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.3);
  border-radius: 24px;
  font-size: 12px;
  color: var(--kobo-antique);
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.04em;
}

/* Category filter animation */
.kobo-service-detail-grid .kobo-card,
.kobo-masonry .kobo-masonry-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.kobo-service-detail-grid .kobo-card[style*="display: none"],
.kobo-masonry .kobo-masonry-item[style*="display: none"] {
  opacity: 0;
  transform: translateY(20px);
}

.kobo-faq-fade {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.kobo-faq-item.open .kobo-faq-fade {
  opacity: 1;
  transform: translateY(0);
}

.kobo-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.kobo-marquee-inner {
  display: inline-flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  padding-right: 60px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.kobo-flowing-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kobo-border), transparent);
  margin: 60px auto;
  max-width: 80%;
}

.kobo-page-hero {
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 1024px) {
  .kobo-page-hero { padding: 110px 24px 60px; }
}