:root {
  --lime: #f7b3cb;
  --lime-deep: #ec85a4;
  --lime-text: #c94770;
  --yellow: #fce8b0;
  --yellow-deep: #f0ce73;
  --sage: #fbd9b8;
  --sage-deep: #f0b67d;
  --sky: #fde2e8;
  --sky-deep: #f3b9c7;
  --pink: #f28fb0;
  --pink-deep: #e06690;
  --pale: #fff6f8;
  --pale-deep: #fce9ee;
  --leaf: #a9c98c;
  --leaf-deep: #7fac5c;
  --dark: #4a2f35;
  --dark-soft: #5c3a41;
  --text: #4a2f35;
  --text-soft: #8a6b70;
  --white: #ffffff;
  --border: #f7e0e0;
  --gold: #c9a24b;
  --font-heading: "Zen Maru Gothic", "Kosugi Maru", "Noto Sans JP", sans-serif;
  --font-pop: "Mochiy Pop One", var(--font-heading);
  --font-body: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", sans-serif;
  --radius: 20px;
  --radius-pill: 48px;
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--pale);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  overflow-x: hidden;
}

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

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

.wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--lime-deep);
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-pop);
  font-weight: 400;
  font-size: 15px;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.site-header .logo {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.logo img {
  height: 34px;
  width: auto;
}

.site-footer .logo img {
  height: 72px;
}

.menu-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid var(--dark);
  border-radius: 8px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-nav {
  position: absolute;
  top: 100%;
  right: 12px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 200px;
  background: #fff;
  border: 2px solid var(--lime-deep);
  border-radius: 0;
  padding: 0;
  box-shadow: 0 10px 24px rgba(74, 47, 53, 0.15);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-nav a:not(.btn) {
  padding: 14px 18px;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--lime-text);
}

.header-nav a:not(.btn):last-child {
  border-bottom: none;
}

.header-nav a:not(.btn):hover {
  background: var(--pale);
}

.btn.header-nav-company {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-pop);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.btn::after {
  content: "";
}

.btn-primary {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 6px 0 var(--lime-deep);
}

.btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--lime-deep);
}

.btn-en {
  font-family: "Arial Black", "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* First View */
.firstview {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.firstview-slides {
  position: absolute;
  inset: 0;
}

.firstview-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.firstview-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.firstview-photo {
  position: absolute;
  inset: 0;
  background: var(--pale-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

.firstview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15);
}

.firstview-photo img.firstview-focus-top {
  object-position: 50% 34%;
}

.firstview-photo img.firstview-focus-up {
  object-position: 50% 35%;
}

.firstview-photo-stack {
  display: none;
}

.firstview-photo--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 179, 210, 0.22) 0%, rgba(255, 179, 210, 0.18) 45%, rgba(255, 179, 210, 0.1) 100%);
  pointer-events: none;
}

.firstview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}

.firstview-caption {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.firstview-caption.pos-bottom-left {
  left: 40px;
  bottom: 64px;
  text-align: left;
}

.firstview-caption.pos-bottom-right {
  right: 40px;
  bottom: 64px;
  text-align: right;
}

.firstview-caption.pos-top-left {
  left: 40px;
  top: 100px;
  text-align: left;
}

.firstview-caption.pos-top-right {
  right: 40px;
  top: 100px;
  text-align: right;
}

.firstview-caption.hero-reveal {
  transform: translateX(-600px);
  transition: opacity 5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 5s cubic-bezier(0.22, 1, 0.36, 1);
}

.firstview-caption.hero-reveal.is-visible {
  transform: translateX(0);
}

.firstview-catch {
  font-family: "Zen Maru Gothic", var(--font-pop);
  font-size: clamp(37px, 8vw, 84px);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.catch-emphasis {
  display: inline-block;
  font-size: 1.05em;
  transform: rotate(-4deg) translateX(14px);
  padding: 0.05em 0.15em;
  background: linear-gradient(105deg, transparent 0%, transparent 5%, rgba(224, 102, 144, 0.55) 5%, rgba(224, 102, 144, 0.55) 95%, transparent 95%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.catch-sub {
  display: inline-block;
  font-size: 0.6em;
  opacity: 0.92;
  margin-top: -0.1em;
}

.catch-lead-break {
  display: none;
}

.mobile-break {
  display: none;
}

@media (max-width: 720px) {
  .firstview {
    height: 100vh;
    height: 100dvh;
  }
  .catch-emphasis {
    white-space: nowrap;
    font-size: 0.85em;
  }
  .catch-lead-break {
    display: block;
  }
  .mobile-break {
    display: block;
  }
  .firstview-photo {
    background: var(--pale-deep);
  }
  .firstview::after {
    display: none;
  }
  .firstview-photo img {
    object-fit: contain;
  }
  .firstview-photo--split .firstview-photo-desktop {
    display: none;
  }
  .firstview-photo--split .firstview-photo-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .firstview-photo-stack img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: 50% 15%;
    filter: brightness(1.15);
  }
  .firstview-caption.pos-bottom-left,
  .firstview-caption.pos-bottom-right {
    left: 20px;
    right: 20px;
    bottom: 32px;
    text-align: left;
  }
  .firstview-caption.pos-top-left,
  .firstview-caption.pos-top-right {
    left: 20px;
    right: 20px;
    top: 84px;
    text-align: left;
  }
  .menu-toggle {
    right: 22px;
  }
  .site-header {
    transform: translateY(0) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .site-header.header-hidden {
    transform: translateY(-100%) translateZ(0);
  }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--lime) 0%, var(--yellow) 100%);
  color: var(--dark);
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero-blob.b1 {
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-blob.b2 {
  left: -80px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-blob.b3 {
  left: 40%;
  top: 10%;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.5);
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero .btn-primary {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 0 var(--lime-deep);
}

.hero .btn-primary:hover {
  box-shadow: 0 4px 0 var(--lime-deep);
}

.hero h1 {
  font-family: var(--font-pop);
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  color: var(--dark);
}

.hero h1 span {
  color: var(--dark);
  text-shadow: 0 3px 0 #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 18px 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
}

img.stat-icon {
  width: auto;
  height: 108px;
  object-fit: contain;
}

.stat-icon.icon-lime {
  color: var(--lime-deep);
}

.stat-icon.icon-yellow {
  color: var(--yellow-deep);
}

.stat-icon.icon-sage {
  color: var(--sage-deep);
}

.stat-icon.icon-pink {
  color: var(--pink-deep);
}

.hero-text-full {
  text-align: center;
}

.hero-text-full .hero-stats {
  margin-left: auto;
  margin-right: auto;
}

.hero-text-full .hero-stat {
  text-align: center;
  align-items: center;
}

.hero-stat .num {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
}

.hero-stat .num small {
  font-size: 30px;
  font-weight: 700;
}

.hero-stat .label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
}

.hero-text {
  min-width: 0;
}

/* Sections */
section {
  position: relative;
  padding: 88px 0;
  overflow: visible;
}

.section-alt {
  background: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--lime-text);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

/* Message */
.message-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: stretch;
}

.message-photo-col {
  position: relative;
  height: 100%;
  min-height: 260px;
}

.message-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: var(--pale) center/cover no-repeat;
  border: none;
  box-shadow: 0 14px 30px rgba(74, 47, 53, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
}

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

.message-name {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  text-align: center;
}

.message-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.message-bubble {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 22px;
  padding: 30px 34px;
  border: none;
  border-radius: 40px;
  background: var(--pale);
}

.bubble-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.bubble-dots-rect {
  stroke: var(--pink-deep);
}

.message-bubble p {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: pre-line;
}

.message-bubble p:last-child {
  margin-bottom: 0;
}

.message-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}

.message-bubble::before,
.message-bubble::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--pink-deep);
}

.message-bubble::before {
  top: 70%;
  left: -18px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
}

.message-bubble::after {
  top: 64%;
  left: -24px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
}

.catch-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.catch-wave-line {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 90px;
  transform: rotate(-14deg);
}

.catch-wave-line svg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.catch-wave-line.wave-1 {
  top: 12%;
}

.catch-wave-line.wave-2 {
  top: 46%;
}

.catch-wave-line.wave-3 {
  top: 80%;
}

#catch .wrap {
  position: relative;
  z-index: 2;
}

.catch-lead {
  font-family: "Zen Maru Gothic", var(--font-pop);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.6;
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.message-lead {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.9;
  color: var(--dark);
  text-align: center;
  max-width: 720px;
  margin: 32px auto 0;
  white-space: pre-line;
}


/* Job description */
.job-lead {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  white-space: pre-line;
  margin-bottom: 24px;
}

.job-detail-list {
  list-style: none;
  background: var(--white);
  border: 2px solid var(--lime-deep);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
}

.job-detail-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

.job-detail-list li::before {
  content: "\25c6";
  color: var(--lime);
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Points / cards */
.point-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.point-card {
  border-radius: 24px;
  padding: 32px;
  position: relative;
  perspective: 1400px;
}

.point-book {
  display: grid;
  grid-template-rows: 1fr;
  height: 100%;
}

.point-cover,
.point-page {
  grid-column: 1;
  grid-row: 1;
}

.point-cover {
  position: relative;
  background: var(--white);
  border: 2px solid var(--lime-deep);
  border-radius: 24px;
  padding: 32px;
  padding-bottom: 64px;
  margin: -32px;
  transform-origin: 0% 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.point-page {
  position: relative;
  background: var(--pale);
  border: 2px solid var(--lime-deep);
  border-radius: 24px;
  padding: 32px;
  padding-bottom: 64px;
  margin: -32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  z-index: 1;
}

.point-page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 230px;
  transform: translate(-50%, -50%);
  background: url("images/logo-vertical.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.point-page p,
.point-close {
  position: relative;
  z-index: 1;
}

.point-card.is-open .point-cover {
  transform: rotateY(-140deg);
  pointer-events: none;
}

.point-photo {
  aspect-ratio: 16 / 10;
  margin: -32px -32px 20px;
  border-radius: 24px 24px 0 0;
  background: var(--pale);
  border-bottom: 2px solid var(--lime-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  overflow: hidden;
}

.point-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.point-photo img.pos-top {
  object-position: 50% 35%;
}

.point-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: inline-block;
  background: var(--lime-deep);
  border-radius: 999px;
  padding: 5px 16px;
}

.point-num.alt {
  background: var(--yellow-deep);
  color: var(--dark);
}

.point-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.6;
}

.point-toggle {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 10px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 400;
  color: var(--lime-text);
  cursor: pointer;
}

.point-toggle-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.point-card.is-open .point-toggle-arrow {
  transform: rotate(180deg);
}

.point-page p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  white-space: pre-line;
}

.point-close {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: none;
  border: none;
  padding: 10px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 400;
  color: var(--lime-text);
  cursor: pointer;
}

/* Education */
.edu-box {
  background: var(--white);
  border: 2px solid var(--lime-deep);
  border-radius: 24px;
  padding: 36px 40px;
  font-size: 15px;
  font-weight: 500;
  white-space: pre-line;
  color: var(--text);
}

/* Requirement table */
.req-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 2px solid var(--lime-deep);
  border-radius: 24px;
  overflow: hidden;
}

.req-table th,
.req-table td {
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.req-table tr:last-child th,
.req-table tr:last-child td {
  border-bottom: none;
}

.req-table th {
  width: 160px;
  background: var(--pale);
  color: var(--dark);
  font-weight: 900;
  white-space: nowrap;
}

.req-table td {
  color: var(--text);
  font-weight: 500;
  white-space: pre-line;
}

/* Interview / voice slider */
.voice-slider {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}

.voice-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  cursor: grab;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.voice-slider-track::-webkit-scrollbar {
  display: none;
}

.voice-slider-track.is-dragging {
  cursor: grabbing;
}

.voice-slide-card {
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 2px solid var(--lime-deep);
  border-radius: 24px;
  padding: 28px 24px;
}

.voice-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--lime-deep);
  color: var(--dark);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(74, 47, 53, 0.15);
  transition: background 0.15s ease;
}

.voice-nav:hover {
  background: var(--lime);
}

.voice-nav.prev {
  left: 0;
}

.voice-nav.next {
  right: 0;
}

.voice-slide-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--lime-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  overflow: hidden;
  margin-bottom: 16px;
}

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

.voice-slide-name {
  font-family: "Yomogi", var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}

.voice-slide-quote {
  font-family: "Yomogi", var(--font-body);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .voice-slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .voice-slide-card {
    width: 240px;
  }
  .voice-nav {
    display: none;
  }
}


/* Confetti splashes (section-gap decoration) */
.confetti-splash {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.confetti-splash.size-s {
  width: 42px;
  height: 42px;
}

.confetti-splash.size-m {
  width: 68px;
  height: 68px;
}

.confetti-splash.size-l {
  width: 100px;
  height: 100px;
}

.confetti-splash.size-xl {
  width: 130px;
  height: 130px;
}

/* Pop-in from a point (zoom) */
.confetti-splash.confetti-pop {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: opacity 0.45s ease-out,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confetti-splash.confetti-pop.is-visible {
  opacity: 1;
  transform: scale(1);
}

.confetti-splash svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: confetti-float 3.6s ease-in-out infinite;
}

.confetti-splash.mirror svg {
  animation-name: confetti-float-mirror;
}

.confetti-splash.c-lime {
  color: var(--lime-deep);
}

.confetti-splash.c-yellow {
  color: var(--yellow-deep);
}

.confetti-splash.c-sage {
  color: var(--sage-deep);
}

.confetti-splash.c-sky {
  color: var(--sky-deep);
}

.confetti-splash.c-pink {
  color: var(--pink-deep);
}

.confetti-splash.c-white {
  color: #fff;
}

.confetti-splash.c-white svg path,
.confetti-splash.c-white svg circle {
  stroke: var(--border);
  stroke-width: 2px;
}

@keyframes confetti-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(6deg);
  }
}

@keyframes confetti-float-mirror {
  0%,
  100% {
    transform: scaleX(-1) translateY(0) rotate(0deg);
  }
  50% {
    transform: scaleX(-1) translateY(-7px) rotate(-6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .confetti-splash svg {
    animation: none !important;
  }
  .confetti-splash.confetti-pop {
    transition: none !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}

/* CTA */
.cta {
  background: linear-gradient(160deg, var(--yellow) 0%, var(--lime) 100%);
  color: var(--dark);
  text-align: center;
  padding: 56px 0 32px;
}

.cta p {
  color: var(--dark);
  opacity: 0.75;
  margin-bottom: 34px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

.entry-hero {
  margin: 0 auto 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.entry-hero p {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--dark);
  white-space: nowrap;
  display: inline-block;
}

.entry-form {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.entry-note {
  margin-top: 90px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-soft);
  text-align: left;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: translate(30px, -15px);
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.entry-actions.entry-actions-with-images {
  position: relative;
  align-items: center;
  justify-content: center;
}

.entry-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.entry-image {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  max-width: 260px;
  z-index: 2;
  pointer-events: none;
}

.entry-image-left {
  transform: translate(-50%, -50%) translateX(-320px) translateY(25px) rotate(32deg);
}

.entry-image-right {
  transform: translate(-50%, -50%) translateX(320px) translateY(13px) rotate(-32deg);
}

.entry-image img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 28px;
  filter: brightness(1.18) saturate(1.08)
    drop-shadow(0 0 0 #fff)
    drop-shadow(2px 0 0 #fff)
    drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff)
    drop-shadow(0 -2px 0 #fff)
    drop-shadow(2px 2px 0 #fff)
    drop-shadow(-2px 2px 0 #fff)
    drop-shadow(2px -2px 0 #fff)
    drop-shadow(-2px -2px 0 #fff)
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.18));
}

.entry-image-pop {
  transform-origin: 50% 100%;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.8s ease-out, transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entry-image-pop.is-visible {
  opacity: 1;
  transform: scale(1);
  animation: entry-image-breathe 3.2s ease-in-out 1.5s infinite;
}

@keyframes entry-image-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-image-pop {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}

@media (max-width: 960px) {
  .entry-form {
    padding: 32px 32px;
  }
}

@media (max-width: 760px) {
  .entry-hero p {
    white-space: normal;
  }

  .entry-image {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .entry-image {
    width: 125px;
    max-width: 125px;
  }
  .entry-image-left {
    transform: translate(-50%, -50%) translateX(-135px) translateY(30px) rotate(32deg);
  }
  .entry-image-right {
    transform: translate(-50%, -50%) translateX(135px) translateY(25px) rotate(-32deg);
  }
  .btn.header-nav-company {
    display: inline-flex;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 20px;
    background: var(--pale-deep);
    border: 3px solid var(--pink-deep);
    border-radius: var(--radius-pill);
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(74, 47, 53, 0.18);
  }
  .header-nav-company::before,
  .header-nav-company::after {
    content: "";
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .header-nav-company::before {
    right: 28px;
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent var(--pink-deep) transparent;
  }
  .header-nav-company::after {
    right: 31px;
    border-width: 0 5px 9px 5px;
    border-color: transparent transparent var(--pale-deep) transparent;
  }
  .entry-note {
    position: relative;
    z-index: 1;
    margin-top: 100px;
    font-size: 11.5px;
    transform: none;
  }
}

.company-info {
  display: grid;
  gap: 6px;
  color: var(--dark);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  text-align: center;
}

.company-info.company-info-footer {
  max-width: 560px;
  margin: 12px 0 0;
  padding: 0;
  text-align: center;
  align-items: center;
}

.company-info .company-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
}

.company-info a {
  color: var(--pink-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-field {
  display: none;
}

.entry-field:last-of-type {
  margin-bottom: 24px;
}

.entry-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.entry-req {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--pink-deep);
  border-radius: 999px;
  padding: 2px 8px;
}

.entry-field input,
.entry-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--pale);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  resize: vertical;
}

.entry-field input:focus,
.entry-field textarea:focus {
  outline: none;
  border-color: var(--lime-deep);
}

.cta .btn-primary {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 0 var(--lime-deep);
}

.cta .btn-primary:hover {
  box-shadow: 0 4px 0 var(--lime-deep);
}

.cta .entry-submit {
  width: 100%;
  max-width: 420px;
  min-width: 280px;
  padding: 20px 34px;
  background: var(--pale-deep);
  color: var(--dark);
  box-shadow: 0 6px 0 var(--lime);
  margin: 0;
}

.cta .entry-submit:hover {
  box-shadow: 0 4px 0 var(--lime);
}

.cta .entry-submit {
  flex-direction: column;
}

.entry-submit-line1 {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  font-weight: 900;
}

.entry-play-icon {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}

.cta .entry-tel {
  min-width: 180px;
  background: var(--pale-deep);
  color: var(--dark);
  border: 0;
  box-shadow: 0 6px 0 var(--lime);
}

.cta .entry-tel:hover {
  box-shadow: 0 4px 0 var(--lime);
}

.btn-outline {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 0 var(--lime-deep);
}

.btn-outline:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--lime-deep);
}

/* Footer */
.site-footer {
  background: var(--pale);
  color: var(--text-soft);
  border-top: 3px solid var(--lime-deep);
  padding: 44px 0 30px;
  font-size: 13px;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

/* Floating company-site bubble */
.floating-entry {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pale-deep);
  color: var(--dark);
  font-family: var(--font-pop);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  padding: 20px 28px;
  border-radius: 58% 42% 45% 55% / 55% 48% 52% 45%;
  border: 3px solid var(--pink-deep);
  box-shadow: 0 12px 30px rgba(74, 47, 53, 0.24);
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-width: 220px;
  animation: floating-entry-bob 2.6s ease-in-out infinite;
}

.floating-entry-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 2px;
}

.floating-entry.header-hidden {
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.floating-entry::before,
.floating-entry::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.floating-entry::before {
  bottom: -14px;
  right: 62px;
  border-width: 14px 8px 0 8px;
  border-color: var(--pink-deep) transparent transparent transparent;
}

.floating-entry::after {
  bottom: -8px;
  right: 65px;
  border-width: 11px 5px 0 5px;
  border-color: var(--pale-deep) transparent transparent transparent;
}

.floating-entry:hover {
  transform: translateY(-3px) scale(1.05);
  animation-play-state: paused;
}

@keyframes floating-entry-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-entry {
    animation: none;
  }
}

/* Intro: paint-roller reveal */
.paint-intro {
  position: fixed;
  inset: 0;
  z-index: 500;
  overflow: hidden;
  pointer-events: none;
}

.paint-band {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  transition: transform 2.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.paint-band-top {
  top: 0;
}

.paint-band-bottom {
  bottom: 0;
  transition-delay: 0.15s;
}

html.curtain-open .paint-band-top {
  transform: translateX(-115%);
}

html.curtain-open .paint-band-bottom {
  transform: translateX(115%);
}

.paint-stroke {
  position: absolute;
  inset: 0;
  background: var(--lime);
  box-shadow: 0 4px 0 rgba(74, 47, 53, 0.08) inset;
}

.paint-band.alt .paint-stroke {
  background: var(--yellow);
}

body.intro-locked {
  overflow: hidden;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(46px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .paint-intro {
    display: none !important;
  }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
  z-index: 300;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .hero-reveal,
  .hero-blob {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
  .confetti-splash {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .message-box {
    grid-template-columns: 1fr;
  }
  .message-photo-col {
    height: auto;
    min-height: 0;
    max-width: 200px;
    margin: 0 auto;
  }
  .message-photo {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .message-bubble {
    margin-left: 0;
    margin-top: 18px;
  }
  .message-bubble::before {
    top: -12px;
    left: 34px;
    width: 14px;
    height: 14px;
  }
  .message-bubble::after {
    top: -22px;
    left: 40px;
    width: 8px;
    height: 8px;
  }
  .req-table th,
  .req-table td {
    display: block;
    width: 100%;
    padding: 12px 20px;
  }
  .req-table th {
    padding-bottom: 4px;
    border-bottom: none;
  }
  .req-table tr {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .req-table {
    border-radius: var(--radius);
  }
  .floating-entry {
    display: none;
  }
}
