:root {
  --peach-cream-1: #FFF1EB;
  --peach-cream-2: #FEF3E7;
  --peach-cream-3: #FCF0E8;
  --card-white: #FFFFFF;
  --plum-deep: #6B5468;
  --plum-soft: #9B8A9A;
  --coral-primary: #F8A599;
  --coral-deep: #E07A5F;
  --apricot-border: #FFDAB9;
  --peach-deco: #FFECD2;
  --cream-soft: #FAF3E0;
  --shadow-soft: 0 8px 32px rgba(248, 165, 153, 0.18);
  --shadow-coral: 0 8px 24px rgba(248, 165, 153, 0.35);
  --radius-pill: 9999px;
  --radius-card: 32px;
  --radius-soft: 16px;
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Lora', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 16px;
  line-height: 2;
  color: var(--plum-deep);
  background: linear-gradient(135deg, var(--peach-cream-1) 0%, var(--peach-cream-2) 50%, var(--peach-cream-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  color: var(--plum-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em 0;
  line-height: 1.2;
}

h1 { font-size: 56px; }
h2 { font-size: 44px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

p {
  font-family: 'Lora', 'Hiragino Mincho ProN', serif;
  color: inherit;
  line-height: 2;
  margin: 0 0 1em 0;
}

strong, b {
  color: inherit;
  font-weight: 700;
}

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

a:hover {
  color: var(--coral-primary);
}

.caption-tech {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--plum-soft);
}

.bg-peach-gradient {
  background: linear-gradient(135deg, var(--peach-cream-1) 0%, var(--peach-cream-2) 50%, var(--peach-cream-3) 100%);
}

.floating-pill-bar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  width: calc(100% - 32px);
  border: 1px solid rgba(255, 218, 185, 0.6);
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-primary), var(--coral-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(248, 165, 153, 0.4);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-domain {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  color: var(--plum-soft);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  font-weight: 600;
}

.brand-company {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 17px;
  color: var(--plum-deep);
  font-weight: 600;
  white-space: nowrap;
}

.brand-subline {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 9px;
  color: var(--plum-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link-pill {
  font-family: 'Lora', 'Hiragino Mincho ProN', serif;
  font-size: 14px;
  color: var(--plum-deep);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--transition-spring);
  white-space: nowrap;
  font-weight: 500;
}

.nav-link-pill:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.nav-cta-btn {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 15px;
  background: var(--coral-primary);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow-coral);
  transition: all 0.3s var(--transition-spring);
  white-space: nowrap;
  margin-left: 6px;
}

.nav-cta-btn:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(248, 165, 153, 0.5);
}

.burger-trigger {
  display: none;
  background: var(--coral-primary);
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-coral);
  margin-left: auto;
}

.fullscreen-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(135deg, rgba(255, 241, 235, 0.98), rgba(254, 243, 231, 0.98), rgba(255, 218, 185, 0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow: hidden;
}

.fullscreen-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  animation: float-blob 20s ease-in-out infinite;
}

.drawer-blob.b1 { background: var(--coral-primary); width: 360px; height: 360px; top: -100px; left: -120px; }
.drawer-blob.b2 { background: var(--apricot-border); width: 480px; height: 480px; bottom: -150px; right: -180px; animation-delay: -7s; }
.drawer-blob.b3 { background: var(--peach-deco); width: 280px; height: 280px; top: 40%; right: 10%; animation-delay: -14s; }

@keyframes float-blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}

.drawer-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--coral-primary);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.drawer-link {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 32px;
  color: var(--plum-deep);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}

.fullscreen-drawer.is-open .drawer-link {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-drawer.is-open .drawer-link:nth-child(4) { transition-delay: 0.1s; }
.fullscreen-drawer.is-open .drawer-link:nth-child(5) { transition-delay: 0.18s; }
.fullscreen-drawer.is-open .drawer-link:nth-child(6) { transition-delay: 0.26s; }
.fullscreen-drawer.is-open .drawer-link:nth-child(7) { transition-delay: 0.34s; }
.fullscreen-drawer.is-open .drawer-link:nth-child(8) { transition-delay: 0.42s; }
.fullscreen-drawer.is-open .drawer-link:nth-child(9) { transition-delay: 0.5s; }

.drawer-link:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
}

main {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

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

.hero-fluid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: hero-flow 22s ease-in-out infinite;
}

.hero-wave.w1 { background: var(--coral-primary); width: 600px; height: 600px; top: -180px; left: -120px; }
.hero-wave.w2 { background: var(--apricot-border); width: 700px; height: 700px; top: 30%; right: -200px; animation-delay: -8s; }
.hero-wave.w3 { background: var(--cream-soft); width: 500px; height: 500px; bottom: -180px; left: 30%; animation-delay: -14s; }

@keyframes hero-flow {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(50px, 30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 165, 153, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 165, 153, 0.07) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: 1;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text-block {
  flex: 1.1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-deep);
  background: var(--peach-deco);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-headline {
  font-size: 72px;
  line-height: 1.1;
  color: var(--plum-deep);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-headline .accent-coral {
  color: var(--coral-deep);
  font-style: italic;
  display: block;
}

.hero-subline {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: var(--plum-soft);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-coral-primary {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 17px;
  background: var(--coral-primary);
  color: #FFFFFF;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow-coral);
  transition: all 0.3s var(--transition-spring);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-coral-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(248, 165, 153, 0.5);
  color: #FFFFFF;
}

.btn-outline-peach {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 17px;
  background: var(--card-white);
  color: var(--coral-deep);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--coral-primary);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s var(--transition-spring);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-outline-peach:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
  border-color: var(--coral-primary);
  transform: translateY(-3px);
}

.hero-visual {
  flex: 0.9;
  min-width: 0;
  position: relative;
  height: 540px;
}

.hero-visual-card {
  position: absolute;
  background: var(--card-white);
  border-radius: 48px;
  box-shadow: 0 20px 60px rgba(248, 165, 153, 0.25);
  overflow: hidden;
  border: 6px solid var(--card-white);
}

.hero-visual-card.c1 { width: 70%; height: 75%; top: 0; right: 0; transform: rotate(2deg); z-index: 2; }
.hero-visual-card.c2 { width: 55%; height: 60%; bottom: 0; left: 0; transform: rotate(-4deg); z-index: 3; }
.hero-visual-card.c3 { width: 40%; height: 45%; top: 8%; left: 12%; transform: rotate(8deg); z-index: 1; }

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

.section-pad {
  padding: 100px 24px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.section-heading {
  font-size: 48px;
  margin-bottom: 18px;
  color: var(--plum-deep);
}

.section-sub {
  font-size: 18px;
  color: var(--plum-soft);
  max-width: 680px;
  margin: 0 0 60px 0;
  line-height: 1.8;
}

.bento-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 22px;
}

.bento-tile {
  position: relative;
  background: var(--card-white);
  border-radius: 32px;
  padding: 28px;
  overflow: hidden;
  transition: all 0.35s var(--transition-spring);
  box-shadow: 0 4px 18px rgba(248, 165, 153, 0.1);
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.bento-tile:hover {
  transform: scale(1.04) translateY(-4px);
  z-index: 10;
  box-shadow: 0 18px 44px rgba(248, 165, 153, 0.32);
  border: 2px solid var(--coral-primary);
}

.bento-tile.t-large { grid-column: span 2; grid-row: span 2; }
.bento-tile.t-tall { grid-column: span 1; grid-row: span 2; }
.bento-tile.t-wide { grid-column: span 2; grid-row: span 1; }
.bento-tile.t-normal { grid-column: span 1; grid-row: span 1; }

.bento-tile-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.bento-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 241, 235, 0) 30%, rgba(107, 84, 104, 0.85) 100%);
  z-index: 1;
}

.bento-tile-content {
  position: relative;
  z-index: 2;
}

.bento-tile h3 {
  color: var(--plum-deep);
  font-size: 26px;
  margin-bottom: 8px;
}

.bento-tile.t-large h3, .bento-tile.t-wide h3 { font-size: 32px; }
.bento-tile.t-large .bento-tile-content { color: #FFFFFF; }
.bento-tile.t-large .bento-tile-content h3 { color: #FFFFFF; }

.bento-tile.t-large h3 { color: #FFFFFF; }
.bento-tile.t-large p { color: rgba(255,255,255,0.9); }

.bento-tile p {
  font-size: 15px;
  color: var(--plum-soft);
  margin: 0;
  line-height: 1.6;
}

.bento-tile-tag {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  color: var(--coral-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.bento-tile.t-large .bento-tile-tag { color: var(--apricot-border); }

.bento-tile-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--coral-deep);
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

.bento-tile.t-large .bento-tile-price { color: #FFFFFF; }

.split-section {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.split-visual {
  flex: 1;
  position: sticky;
  top: 120px;
  height: fit-content;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(248, 165, 153, 0.22);
  min-height: 540px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}

.split-content {
  flex: 1;
}

.timeline-rail {
  position: relative;
  padding-left: 80px;
}

.timeline-rail::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--coral-primary);
  opacity: 0.4;
}

.timeline-node {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 30px 34px;
  margin-bottom: 26px;
  border: 1px solid var(--apricot-border);
  transition: all 0.3s var(--transition-spring);
}

.timeline-node:hover {
  transform: translateX(8px);
  box-shadow: 0 14px 36px rgba(248, 165, 153, 0.25);
  z-index: 5;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -56px;
  top: 38px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 0 6px var(--peach-cream-1), 0 0 0 8px var(--coral-primary);
}

.timeline-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}

.timeline-title {
  font-size: 22px;
  color: var(--plum-deep);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--plum-soft);
  margin: 0;
  line-height: 1.7;
}

.masonry-waterfall {
  columns: 3;
  column-gap: 24px;
}

.masonry-card {
  display: block;
  background: var(--card-white);
  border-radius: 28px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(248, 165, 153, 0.12);
  transition: all 0.35s var(--transition-spring);
  text-decoration: none;
  color: inherit;
  break-inside: avoid;
  position: relative;
  z-index: 1;
}

.masonry-card:hover {
  transform: scale(1.03) translateY(-4px);
  z-index: 10;
  box-shadow: 0 18px 44px rgba(248, 165, 153, 0.3);
}

.masonry-card-img {
  width: 100%;
  display: block;
}

.masonry-card-body {
  padding: 22px 24px 26px;
}

.masonry-card-tag {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  color: var(--coral-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.masonry-card h3 {
  font-size: 22px;
  color: var(--plum-deep);
  margin-bottom: 8px;
}

.masonry-card p {
  font-size: 14px;
  color: var(--plum-soft);
  margin: 0;
  line-height: 1.6;
}

.advantages-flex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.advantage-card {
  background: var(--card-white);
  border-radius: 32px;
  padding: 36px 30px;
  transition: all 0.4s var(--transition-spring);
  position: relative;
  z-index: 1;
  border: 1px solid var(--peach-deco);
  box-shadow: 0 4px 18px rgba(248, 165, 153, 0.08);
}

.advantage-card:hover {
  transform: scale(1.06) translateY(-6px);
  z-index: 10;
  background: linear-gradient(135deg, var(--card-white), var(--peach-deco));
  box-shadow: 0 20px 48px rgba(248, 165, 153, 0.32);
}

.advantage-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--coral-primary);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.advantage-card h3 {
  font-size: 22px;
  color: var(--plum-deep);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 15px;
  color: var(--plum-soft);
  margin: 0;
  line-height: 1.7;
}

.team-hover-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.team-row {
  position: relative;
  background: var(--card-white);
  border-radius: 22px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--peach-deco);
  transition: all 0.3s var(--transition-spring);
  cursor: pointer;
  z-index: 1;
}

.team-row:hover {
  z-index: 10;
  background: linear-gradient(135deg, var(--card-white), var(--peach-deco));
  transform: translateX(8px);
  box-shadow: 0 14px 36px rgba(248, 165, 153, 0.25);
}

.team-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--coral-primary);
}

.team-info {
  flex: 1;
}

.team-name {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 24px;
  color: var(--plum-deep);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.team-role {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: var(--coral-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  font-weight: 700;
}

.team-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--plum-soft);
  font-weight: 600;
  white-space: nowrap;
}

.coverflow-stage {
  position: relative;
  perspective: 1200px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 36px 32px;
  width: 360px;
  box-shadow: 0 16px 44px rgba(248, 165, 153, 0.22);
  border: 1px solid var(--apricot-border);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.coverflow-card.is-center {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 5;
  pointer-events: auto;
}

.coverflow-card.is-left {
  opacity: 0.6;
  transform: translateX(-280px) scale(0.85) rotateY(20deg);
  z-index: 2;
}

.coverflow-card.is-right {
  opacity: 0.6;
  transform: translateX(280px) scale(0.85) rotateY(-20deg);
  z-index: 2;
}

.coverflow-card.is-hidden {
  opacity: 0;
  transform: translateX(0) scale(0.7);
}

.review-stars {
  color: var(--coral-primary);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 4px;
}

.review-text {
  font-size: 15px;
  color: var(--plum-deep);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--coral-primary);
}

.review-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--plum-deep);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.review-org {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: var(--plum-soft);
  display: block;
  margin-top: 2px;
}

.coverflow-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.coverflow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-white);
  border: 2px solid var(--coral-primary);
  color: var(--coral-deep);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s var(--transition-spring);
}

.coverflow-btn:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.accordion-row {
  background: var(--card-white);
  border-radius: 22px;
  border: 1px solid var(--peach-deco);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-row.is-open {
  box-shadow: 0 14px 36px rgba(248, 165, 153, 0.22);
  border-color: var(--coral-primary);
}

.accordion-head {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 18px;
  color: var(--plum-deep);
  text-align: left;
  font-weight: 600;
  gap: 18px;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peach-deco);
  color: var(--coral-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s var(--transition-spring);
}

.accordion-row.is-open .accordion-icon {
  background: var(--coral-primary);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-row.is-open .accordion-body {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 0 30px 24px 30px;
  font-size: 15px;
  color: var(--plum-soft);
  line-height: 1.8;
  margin: 0;
}

.contact-split {
  display: flex;
  gap: 50px;
}

.contact-form-pane {
  flex: 1;
  background: var(--card-white);
  border-radius: 36px;
  padding: 44px 40px;
  box-shadow: 0 14px 40px rgba(248, 165, 153, 0.18);
}

.form-row {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: var(--plum-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--apricot-border);
  padding: 10px 0;
  font-family: 'Lora', 'Hiragino Mincho ProN', serif;
  font-size: 16px;
  color: var(--plum-deep);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-bottom-color: var(--coral-primary);
}

.form-control::placeholder {
  color: var(--plum-soft);
  opacity: 0.7;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  border: 2px solid var(--apricot-border);
  border-radius: 16px;
  padding: 14px 16px;
}

textarea.form-control:focus {
  border-color: var(--coral-primary);
}

.contact-info-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  background: var(--card-white);
  border-radius: 28px;
  padding: 26px 30px;
  box-shadow: 0 6px 22px rgba(248, 165, 153, 0.1);
}

.info-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: var(--coral-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.info-value {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 22px;
  color: var(--plum-deep);
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

.info-value a {
  color: var(--plum-deep);
  text-decoration: none;
}

.info-value a:hover {
  color: var(--coral-deep);
}

.form-success {
  display: none;
  background: linear-gradient(135deg, var(--peach-deco), var(--card-white));
  border: 2px solid var(--coral-primary);
  border-radius: 28px;
  padding: 50px 36px;
  text-align: center;
  color: var(--plum-deep);
}

.form-success.is-visible {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 18px;
}

.form-success h3 {
  font-size: 32px;
  color: var(--plum-deep);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 16px;
  color: var(--plum-soft);
  margin: 0;
}

.footer-canopy {
  background: linear-gradient(180deg, var(--coral-primary) 0%, var(--coral-deep) 100%);
  color: #FFFFFF;
  border-radius: 48px 48px 0 0;
  padding: 80px 24px 36px;
  position: relative;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-col h3 {
  color: #FFFFFF;
  font-size: 28px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Lora', 'Hiragino Mincho ProN', serif;
}

.footer-link-list a:hover {
  color: var(--cream-soft);
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--card-white);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 0 18px 50px rgba(107, 84, 104, 0.25);
  z-index: 3000;
  border: 1px solid var(--apricot-border);
}

.cookie-banner-head {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  font-size: 20px;
  color: var(--plum-deep);
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.cookie-banner-text {
  font-size: 13px;
  color: var(--plum-soft);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--coral-primary);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: var(--coral-deep);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--plum-soft);
  border: 1.5px solid var(--plum-soft);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
  background: var(--plum-soft);
  color: #FFFFFF;
}

.cookie-banner-link {
  font-size: 12px;
  color: var(--coral-deep);
  text-decoration: underline;
  margin-left: 4px;
}

.thank-you-stage {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  text-align: center;
}

.thank-you-inner {
  max-width: 640px;
  background: var(--card-white);
  border-radius: 48px;
  padding: 64px 48px;
  box-shadow: 0 20px 60px rgba(248, 165, 153, 0.25);
}

.thank-you-mark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-coral);
}

.legal-stack {
  max-width: 880px;
  margin: 0 auto;
  background: var(--card-white);
  border-radius: 36px;
  padding: 50px 44px;
  box-shadow: 0 14px 40px rgba(248, 165, 153, 0.18);
}

.legal-stack h2 {
  font-size: 28px;
  color: var(--coral-deep);
  margin-top: 32px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--apricot-border);
  padding-bottom: 8px;
}

.legal-stack h2:first-child {
  margin-top: 0;
}

.legal-stack h3 {
  font-size: 20px;
  color: var(--plum-deep);
  margin-top: 22px;
  margin-bottom: 8px;
}

.legal-stack p, .legal-stack li {
  font-size: 15px;
  color: var(--plum-soft);
  line-height: 1.85;
}

.legal-stack ul {
  padding-left: 22px;
}

.page-hero {
  padding: 100px 24px 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 64px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--plum-soft);
  max-width: 680px;
  margin: 0 auto;
}

.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-element.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-content-wrap { flex-direction: column; gap: 30px; }
  .hero-headline { font-size: 52px; }
  .hero-visual { height: 400px; width: 100%; max-width: 480px; }
  .split-section { flex-direction: column; gap: 30px; }
  .split-visual { position: static; min-height: 360px; }
  .split-visual img { min-height: 360px; }
  .contact-split { flex-direction: column; }
  .bento-services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-flex-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-waterfall { columns: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-cta-btn { display: none; }
  .burger-trigger { display: inline-flex; }
  .floating-pill-bar { padding: 8px 8px 8px 16px; }
  .hero-section { padding: 30px 18px; }
  .hero-headline { font-size: 38px; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group a, .hero-cta-group button { width: 100%; justify-content: center; }
  .hero-visual { height: 320px; }
  .hero-visual-card { max-width: 280px; }
  .hero-visual-card.c1 { width: 78%; max-width: 220px; }
  .hero-visual-card.c2 { width: 60%; max-width: 170px; }
  .hero-visual-card.c3 { display: none; }
  .hero-wave { width: 320px !important; height: 320px !important; }
  .hero-wave.w1 { left: -80px; top: -100px; }
  .hero-wave.w2 { right: -120px; }
  .hero-wave.w3 { left: 20%; }
  .section-pad { padding: 60px 18px; }
  .section-heading { font-size: 34px; }
  .bento-services-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-tile.t-large, .bento-tile.t-tall, .bento-tile.t-wide { grid-column: span 1; grid-row: span 1; }
  .advantages-flex-grid { grid-template-columns: 1fr; }
  .masonry-waterfall { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline-rail { padding-left: 50px; }
  .timeline-rail::before { left: 18px; }
  .timeline-node::before { left: -42px; }
  .coverflow-card { width: 280px; }
  .coverflow-card.is-left { transform: translateX(-200px) scale(0.85) rotateY(20deg); }
  .coverflow-card.is-right { transform: translateX(200px) scale(0.85) rotateY(-20deg); }
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .legal-stack { padding: 32px 22px; }
  .thank-you-inner { padding: 44px 24px; }
  .page-hero h1 { font-size: 42px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .contact-form-pane, .info-block { padding: 26px 22px; }
  .drawer-blob { width: 200px !important; height: 200px !important; }
  .drawer-blob.b1 { left: -80px; top: -60px; }
  .drawer-blob.b2 { right: -100px; bottom: -80px; }
  .drawer-blob.b3 { width: 160px !important; height: 160px !important; top: 30%; right: 5%; }
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--peach-cream-1); }
::-webkit-scrollbar-thumb { background: var(--coral-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--coral-deep); }
