:root {
  --milk: #fffaf3;
  --cream: #f8eedf;
  --apricot: #f3c6a5;
  --coral: #dc8777;
  --coral-dark: #bc6b5e;
  --sage: #bdcbb6;
  --sage-deep: #899e83;
  --ink: #49413b;
  --muted: #7c7169;
  --white: #fffefa;
  --line: rgba(92, 76, 66, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--milk);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

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

.character-review {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.72), transparent 34%),
    var(--cream);
}

.character-stage {
  width: min(760px, 92vw);
  min-height: min(650px, 86svh);
  display: grid;
  place-items: center;
  position: relative;
}

.character-stage::after {
  content: "";
  width: min(440px, 62vw);
  height: 44px;
  position: absolute;
  left: 50%;
  bottom: 14%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(112, 84, 63, 0.1);
  filter: blur(12px);
  transform: translateX(-50%);
}

.character-stage .fluffy-image {
  width: min(620px, 82vw);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: breathe 5s ease-in-out infinite;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 68px;
  padding: 14px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 250, 243, 0.78);
  border-bottom: 1px solid rgba(92, 76, 66, 0.07);
  backdrop-filter: blur(14px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand {
  width: clamp(142px, 13vw, 174px);
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
}

nav a {
  position: relative;
  padding: 6px 2px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 0;
  height: 4px;
  border-radius: 99px;
  background: var(--apricot);
  transition: inset 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  inset-inline: 0;
}

.hero {
  min-height: 100svh;
  padding: 130px clamp(24px, 7vw, 110px) 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 7vw, 110px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.65), transparent 25%),
    var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5.1vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.24;
}

.hero-line {
  width: max-content;
  max-width: 100%;
  display: block;
  white-space: nowrap;
}

.hero-line-accent {
  position: relative;
  z-index: 1;
  color: var(--coral-dark);
}

.hero-line-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -2%;
  bottom: 0.04em;
  height: 0.22em;
  border-radius: 100%;
  background: rgba(243, 198, 165, 0.8);
  transform: rotate(-1deg);
}

.hero-text {
  margin: 30px 0 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.round-button {
  width: fit-content;
  padding: 13px 22px 13px 25px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(100, 75, 58, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.round-button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
}

.round-button:hover,
.round-button:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 15px 32px rgba(100, 75, 58, 0.13);
}

.fluffy-scene {
  min-height: 490px;
  position: relative;
  display: grid;
  place-items: center;
  z-index: 2;
}

.fluffy-image {
  width: clamp(280px, 32vw, 460px);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: breathe 5s ease-in-out infinite;
}

.fluffy {
  width: clamp(230px, 25vw, 360px);
  aspect-ratio: 1.42;
  position: relative;
  isolation: isolate;
  border: 3px solid rgba(109, 91, 80, 0.07);
  border-radius: 49% 51% 42% 44% / 59% 57% 39% 38%;
  background: #fffdf8;
  box-shadow:
    inset 0 -16px 24px rgba(181, 155, 135, 0.06),
    0 30px 60px rgba(112, 84, 63, 0.1);
  filter: drop-shadow(0 4px 2px rgba(111, 88, 71, 0.025));
  animation: breathe 5s ease-in-out infinite;
}

.fluffy::before,
.fluffy::after {
  content: none;
}

.cat-ear {
  position: absolute;
  top: -30%;
  width: 37%;
  height: 60%;
  z-index: -2;
  background: #fffdf8;
  clip-path: polygon(50% 0, 100% 94%, 4% 100%);
}

.cat-ear::after {
  content: "";
  position: absolute;
  inset: 20% 24% 8%;
  border-radius: 52% 48% 60% 40%;
  background: rgba(236, 175, 154, 0.36);
  clip-path: polygon(50% 0, 100% 92%, 7% 100%);
}

.cat-ear-left {
  left: 5%;
  transform: rotate(-10deg);
}

.cat-ear-right {
  right: 5%;
  transform: rotate(10deg) scaleX(-1);
}

.cat-ear-right::after {
  background: rgba(179, 171, 165, 0.32);
}

.fluffy-tail {
  position: absolute;
  right: -19%;
  bottom: 2%;
  width: 31%;
  height: 73%;
  z-index: -3;
  border: clamp(22px, 2.5vw, 34px) solid #fffdf8;
  border-left: 0;
  border-bottom-color: transparent;
  border-radius: 0 90% 70% 0;
  transform: rotate(18deg);
}

.fluffy-tail::after {
  content: "";
  position: absolute;
  top: -29px;
  right: -28px;
  width: 31px;
  height: 51px;
  border-radius: 70% 80% 45% 55%;
  background: rgba(224, 166, 115, 0.65);
  transform: rotate(-3deg);
}

.calico-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.calico-patch {
  position: absolute;
  display: block;
  opacity: 0.72;
}

.calico-orange-one {
  width: 39%;
  height: 34%;
  top: -5%;
  left: 7%;
  border-radius: 30% 70% 55% 45% / 55% 35% 65% 45%;
  background: #e7b47f;
  transform: rotate(-8deg);
}

.calico-orange-two {
  width: 34%;
  height: 31%;
  right: -7%;
  bottom: 6%;
  border-radius: 70% 30% 45% 55% / 45% 60% 40% 55%;
  background: #edc397;
  transform: rotate(18deg);
}

.calico-gray-one {
  width: 32%;
  height: 38%;
  top: -2%;
  right: -3%;
  border-radius: 48% 52% 65% 35% / 35% 45% 55% 65%;
  background: #b9aea6;
  transform: rotate(11deg);
}

.calico-gray-two {
  width: 27%;
  height: 28%;
  left: -5%;
  bottom: 12%;
  border-radius: 60% 40% 44% 56% / 48% 67% 33% 52%;
  background: #c8beb6;
  transform: rotate(-16deg);
}

.mochi-shine {
  position: absolute;
  top: 13%;
  left: 19%;
  width: 27%;
  height: 11%;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(2px);
  transform: rotate(-8deg);
}

.fluffy-eye {
  position: absolute;
  top: 45%;
  width: 12px;
  height: 16px;
  z-index: 2;
  border-radius: 50%;
  background: var(--ink);
}

.fluffy-eye-left {
  left: 37%;
}

.fluffy-eye-right {
  right: 37%;
}

.fluffy-mouth {
  position: absolute;
  top: 57%;
  left: 50%;
  width: 24px;
  height: 12px;
  z-index: 2;
  border-bottom: 3px solid var(--ink);
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.fluffy-cheek {
  position: absolute;
  top: 56%;
  width: 26px;
  height: 12px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(243, 166, 157, 0.36);
}

.fluffy-cheek-left {
  left: 23%;
}

.fluffy-cheek-right {
  right: 23%;
}

.orbit {
  position: absolute;
  border: 2px dashed rgba(137, 158, 131, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 90%;
  height: 72%;
  transform: rotate(-12deg);
}

.orbit-two {
  width: 70%;
  height: 92%;
  transform: rotate(30deg);
}

.hero-sun,
.hero-leaf {
  position: absolute;
  pointer-events: none;
}

.hero-sun {
  width: 150px;
  height: 150px;
  top: 17%;
  right: -55px;
  border-radius: 50%;
  background: rgba(243, 198, 165, 0.55);
}

.hero-leaf {
  width: 95px;
  height: 190px;
  border-radius: 90% 15% 90% 15%;
  background: rgba(189, 203, 182, 0.55);
}

.hero-leaf-one {
  left: -35px;
  bottom: 10%;
  transform: rotate(32deg);
}

.hero-leaf-two {
  left: 47%;
  top: 5%;
  transform: scale(0.55) rotate(-25deg);
}

.hero-wave {
  position: absolute;
  inset: auto -8% -55px;
  height: 110px;
  border-radius: 50% 50% 0 0 / 75% 75% 0 0;
  background: var(--milk);
  transform: rotate(1deg);
}

.section {
  padding: clamp(90px, 11vw, 150px) clamp(24px, 6vw, 80px);
}

.section-inner {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.about {
  background: var(--milk);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.section-heading h2,
.info h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.section-heading.center {
  margin-bottom: 54px;
  text-align: center;
}

.about-copy .lead {
  margin: 0 0 25px;
  color: var(--coral-dark);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.75;
}

.about-copy > p:not(.lead) {
  margin: 0;
  color: var(--muted);
}

.soft-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soft-tags span {
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.works {
  position: relative;
  background: #f2e7d7;
}

.works::before {
  content: "";
  position: absolute;
  inset: -40px -5% auto;
  height: 85px;
  border-radius: 50%;
  background: #f2e7d7;
}

.section-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 235px;
  padding: 34px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(96, 72, 55, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px) rotate(-0.3deg);
  box-shadow: 0 20px 42px rgba(96, 72, 55, 0.11);
}

.service-card h3,
.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.service-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 42% 58% 48% 52%;
  background: var(--apricot);
}

.service-card.sage .service-icon {
  background: var(--sage);
}

.phone-shape {
  width: 36px;
  height: 58px;
  padding: 7px;
  border: 3px solid var(--white);
  border-radius: 10px;
}

.phone-shape i {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.55);
}

.browser-shape {
  width: 65px;
  height: 48px;
  padding: 15px 7px 7px;
  position: relative;
  border: 3px solid var(--white);
  border-radius: 9px;
}

.browser-shape::before {
  content: "•••";
  position: absolute;
  top: -6px;
  left: 6px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1px;
}

.browser-shape i,
.browser-shape b {
  height: 4px;
  display: block;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
}

.browser-shape b {
  width: 70%;
  margin-top: 6px;
}

.product-card {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(109, 90, 77, 0.1);
  border-radius: 42px;
  background: var(--milk);
}

.product-placeholder {
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  border: 3px dashed rgba(109, 90, 77, 0.2);
  border-radius: 36px;
  background: var(--white);
  text-align: center;
  transform: rotate(-3deg);
}

.product-placeholder span {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-placeholder small {
  color: var(--muted);
}

.status,
.pending-contact {
  width: fit-content;
  padding: 5px 13px;
  display: inline-block;
  border-radius: 999px;
  background: var(--sage);
  color: #41513e;
  font-size: 0.74rem;
  font-weight: 800;
}

.product-card h3 {
  margin-top: 13px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.product-card .replace-note {
  margin-top: 15px;
  font-size: 0.75rem;
  opacity: 0.8;
}

.info {
  background: var(--milk);
}

.info-panel {
  padding: clamp(32px, 6vw, 70px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 8vw, 110px);
  border-radius: 50px 24px 50px 24px;
  background: var(--sage);
}

.info-copy > p:last-child {
  margin-top: 22px;
  color: #596855;
}

.info-list {
  margin: 0;
  padding: 8px 0;
}

.info-list > div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(65, 81, 62, 0.16);
}

.info-list dt {
  color: #596855;
  font-size: 0.8rem;
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  font-weight: 600;
}

.pending-contact {
  background: rgba(255, 255, 255, 0.5);
}

footer {
  padding: 65px 24px 42px;
  position: relative;
  overflow: hidden;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

footer::before {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -30px;
}

footer::after {
  width: 140px;
  height: 140px;
  right: -30px;
  bottom: -70px;
}

footer p {
  margin: 10px 0 28px;
  opacity: 0.87;
}

footer small {
  opacity: 0.72;
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 140px;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .round-button {
    margin-inline: auto;
  }

  .fluffy-scene {
    min-height: 390px;
  }

  .fluffy {
    width: min(310px, 64vw);
  }

  .about-grid,
  .info-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-card {
    grid-template-columns: 90px 1fr;
  }

  .service-icon {
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
    padding-inline: 16px;
  }

  .brand {
    width: clamp(132px, 37vw, 152px);
  }

  nav {
    gap: 10px;
  }

  nav a {
    font-size: 0.72rem;
  }

  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    padding: 118px 22px 95px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .desktop-break {
    display: none;
  }

  .fluffy-scene {
    min-height: 320px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 25px;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    border-radius: 28px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .phone-shape,
  .browser-shape {
    transform: scale(0.78);
  }

  .product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-placeholder,
  .status {
    margin-inline: auto;
  }

  .info-panel {
    border-radius: 32px 18px 32px 18px;
  }

  .info-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
