/* =========================================================
   ネコの手貸します!! — home page styles
   ========================================================= */

:root {
  /* palette */
  --ink: #2B2320;           /* 黒猫カラー */
  --ink-soft: #4A3F3B;
  --cream: #FBF7F0;         /* 温かみのあるアイボリー */
  --cream-2: #F3ECDF;
  --cream-3: #E9DFC9;
  --pink: #E8A4A8;          /* 肉球ピンク */
  --pink-soft: #F5D5D7;
  --green: #8FA58A;         /* 優しいグリーン（アクセント） */
  --green-soft: #C8D4C3;
  --line-green: #06C755;
  --amber: #E9B84A;
  --border: rgba(43,35,32,0.14);

  /* type */
  --font-main: "Murecho", "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-serif: "Murecho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-num: "Fraunces", "Noto Serif JP", serif;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(43,35,32,0.06);
  --shadow-md: 0 10px 30px rgba(43,35,32,0.08);
  --shadow-lg: 0 24px 60px rgba(43,35,32,0.12);

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 25px; }
@media (max-width: 720px) { html { font-size: 21px; } }
body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--pink); }
u { text-decoration: none; background: linear-gradient(transparent 60%, var(--pink-soft) 60%); padding: 0 .1em; }

.sp-only { display: none; }
@media (max-width: 720px) { .sp-only { display: inline; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 32px;
  background: rgba(251,247,240,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; min-width: 0; }
.nav__logo-img { width: 44px; height: 44px; object-fit: contain; object-position: center; flex-shrink: 0; }
.nav__logo-text { min-width: 0; white-space: nowrap; }
.footer__logo-img { width: 56px; height: 56px; object-fit: contain; filter: none; }
.nav__logo-title {
  display: block;
  font-weight: 900; font-size: 23px; line-height: 1.1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__logo-title em { color: var(--pink); font-style: normal; margin-left: 2px; }
.nav__logo-sub {
  display: block;
  font-family: var(--font-main);
  font-size: 17px; letter-spacing: 0.08em;
  color: var(--pink); opacity: 1;
  font-weight: 900;
  margin-top: 5px;
  white-space: nowrap;
}
.nav__links { display: flex; gap: 32px; margin-left: auto; font-size: 22px; font-weight: 900; flex-shrink: 0; }
.nav__links a { white-space: nowrap; }
.nav__links a { position: relative; }
.nav__links a:hover { color: var(--pink); }
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: -6px;
  width: 0; height: 2px; background: var(--pink); border-radius: 2px;
  transition: all .2s ease; transform: translateX(-50%);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav { padding: 12px 20px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 21px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--sm { padding: 9px 16px; font-size: 17px; }
.btn--lg { padding: 17px 30px; font-size: 22px; }
.btn--xl {
  padding: 24px 32px; font-size: 23.5px;
  min-width: 280px;
  flex-direction: column; gap: 2px;
  line-height: 1.3;
}
.btn--xl .btn__sub {
  font-size: 16px; font-weight: 600; opacity: 0.9;
  letter-spacing: 0.12em;
}
.btn--xl .btn__main {
  font-size: 23px; font-weight: 900;
  display: flex; align-items: center; gap: 8px;
}
.btn--primary {
  background: var(--ink); color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #3a2f2b; }
.btn--line {
  background: var(--line-green); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--line:hover { background: #05b54c; }

/* =========================================================
   SECTION common
   ========================================================= */
.section { padding: 120px 32px; max-width: var(--container); margin: 0 auto; }
@media (max-width: 720px) { .section { padding: 80px 20px; } }

.section__head { text-align: left; max-width: var(--container); margin: 0 auto 64px; }
.section__head--light { color: var(--cream); }

.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-num);
  font-size: 18.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 9px 20px;
  background: var(--pink-soft);
  border-radius: var(--radius-pill);
}
.section__label--light { background: rgba(255,255,255,0.12); color: var(--pink-soft); }
.section__label img { filter: none; opacity: 0.8; }
.section__label img { color: var(--pink); }

.section__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.35;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
.section__title em { color: var(--pink); font-style: normal; }
.section__title--left { text-align: left; }
.section__title--single {
  white-space: nowrap;
  font-size: clamp(28px, 4vw, 56px);
}
@media (max-width: 720px) {
  .section__title--single { white-space: normal; font-size: clamp(28px, 7vw, 40px); }
}
.section__lead {
  font-size: 23px; color: var(--ink-soft); line-height: 2;
  margin: 0;
}
.section__lead--single {
  white-space: nowrap;
  font-size: clamp(16px, 1.6vw, 20.5px);
  overflow: visible;
}
@media (max-width: 720px) {
  .section__lead--single { white-space: normal; font-size: 17px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
  padding: 60px 32px 0;
}
.hero__bg-paws {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, var(--pink-soft) 0, var(--pink-soft) 3px, transparent 3.5px),
    radial-gradient(circle at 85% 15%, var(--green-soft) 0, var(--green-soft) 3px, transparent 3.5px),
    radial-gradient(circle at 30% 80%, var(--pink-soft) 0, var(--pink-soft) 3px, transparent 3.5px);
  opacity: 0.5;
  pointer-events: none;
}
.hero__bg-paws::before, .hero__bg-paws::after {
  content: "🐾";
  position: absolute; font-size: 40px; opacity: 0.08;
}
.hero__bg-paws::before { top: 15%; right: 8%; transform: rotate(20deg); }
.hero__bg-paws::after { bottom: 30%; left: 5%; transform: rotate(-15deg); }

.hero__topbar {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 32px 24px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.hero__topbar-text { min-width: 0; }
.hero__topbar .hero__eyebrow { margin-bottom: 24px; }
.hero__topbar-cat {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(43, 35, 32, 0.18));
  animation: catBob 3.5s ease-in-out infinite;
}
@keyframes catBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@media (max-width: 720px) {
  .hero__topbar { grid-template-columns: 1fr; gap: 16px; }
  .hero__topbar-cat { width: 140px; justify-self: end; margin-top: -20px; }
}
.hero__title--giant {
  font-size: 11vw;
  line-height: 1.0;
  margin: 0;
  letter-spacing: -0.04em;
  width: 100%;
  text-align: left;
  font-weight: 900;
}
.hero__title--giant .hero__title-line1 {
  display: block;
  white-space: nowrap;
  font-size: 1em;
}
.hero__title--giant .hero__title-line1 em { font-size: 1em; }
.hero__title--giant .hero__title-line3 {
  display: block;
  font-size: 0.55em;
  margin-top: 24px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .hero__topbar { padding: 32px 16px 16px; }
  .hero__title--giant { font-size: clamp(48px, 14vw, 88px); letter-spacing: -0.02em; }
  .hero__title--giant .hero__title-line3 { font-size: 0.62em; margin-top: 12px; }
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0 80px;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 24px 0 60px; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  font-size: 20px; font-weight: 900;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.25;
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}
.hero__title-line1 {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}
.hero__title-line1 em { color: var(--pink); font-family: var(--font-num); font-style: italic; font-size: 1.1em; }
.hero__title-line3 {
  display: block;
  font-size: 0.6em;
  font-weight: 700;
  margin-top: 12px;
  color: var(--ink);
}

.hero__lead {
  font-size: 23.5px;
  line-height: 2.05;
  margin: 0 0 40px;
  color: var(--ink-soft);
}
.hero__lead strong { color: var(--ink); font-weight: 900; background: linear-gradient(transparent 70%, var(--pink-soft) 70%); }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__badges {
  display: flex; gap: 10px;
  list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap;
}
.hero__badges li {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  flex: 1 1 180px;
  min-width: 180px;
}
.hero__badges b {
  display: block;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  line-height: 1.2;
}
.hero__badges b em { font-style: normal; font-size: 18px; font-family: var(--font-main); color: var(--ink-soft); margin-left: 3px; font-weight: 700; }
.hero__badges span {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--pink);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* hero visual — photo stack */
.hero__visual { position: relative; }
.hero__photo-stack {
  position: relative;
  aspect-ratio: 1/1.05;
  max-width: 520px;
  margin: 0 auto;
}
.hero__photo {
  position: absolute;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--ink); color: var(--cream);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
}
.hero__photo--main {
  inset: 0 8% 22% 0;
  transform: rotate(2deg);
  z-index: 2;
}
.hero__photo--sub1 {
  width: 48%; aspect-ratio: 1;
  bottom: 0; left: 0;
  transform: rotate(-5deg);
  z-index: 3;
  border-radius: 20px;
}
.hero__photo--sub2 {
  width: 42%; aspect-ratio: 1;
  bottom: 5%; right: -4%;
  transform: rotate(4deg);
  z-index: 1;
  border-radius: 20px;
}
.hero__photo:hover { transform: rotate(0) scale(1.02); z-index: 5; }

.hero__logo-badge {
  position: absolute;
  top: -6%; right: -6%;
  width: 42%;
  z-index: 4;
  filter: drop-shadow(0 10px 20px rgba(43,35,32,0.2));
  pointer-events: none;
}
.hero__logo-badge img { width: 100%; }

.hero__speech {
  position: absolute;
  top: 30%; right: -4%;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 10px 18px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  transform: rotate(6deg);
  z-index: 5;
}
.hero__speech::after {
  content: ""; position: absolute; bottom: -10px; left: 25%;
  width: 16px; height: 16px;
  background: #fff;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

/* hero marquee */
.hero__marquee {
  margin-top: 40px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  transform: rotate(-1.5deg);
  margin-left: -40px; margin-right: -40px;
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
}
.hero__marquee-track {
  display: inline-flex; gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-serif); font-weight: 900; font-size: 22px;
  align-items: center;
}
.hero__marquee-track i { font-style: normal; font-size: 16px; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SERVICE
   ========================================================= */
.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: var(--container); margin: 0 auto;
}
@media (max-width: 900px) {
  .service__grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.service-card__photo {
  position: relative;
  margin: -32px -28px 24px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.service-card:hover .service-card__photo img { transform: scale(1.05); }
.service-card__photo--sub { aspect-ratio: 16/9; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card__no {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-num); font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.service-card__icon {
  width: 64px; height: 64px;
  background: var(--pink-soft); color: var(--pink);
  border-radius: 20px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.service-card__desc {
  font-size: 22px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.service-card__list { list-style: none; margin: 0; padding: 0; font-size: 22px; }
.service-card__list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}
.service-card__list li:first-child { border-top: none; }
.service-card__list b {
  flex-shrink: 0;
  font-size: 14px;
  padding: 4px 12px;
  background: var(--cream-2);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  align-self: flex-start;
  margin-top: 2px;
  min-width: 46px;
  text-align: center;
}
.service-card__list--mini li { padding: 8px 0; }
.service-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--pink); color: var(--ink);
  font-size: 15.5px; font-weight: 900;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  z-index: 2;
}

/* =========================================================
   WHY
   ========================================================= */
.why {
  background: var(--cream-2);
  max-width: none; width: 100%;
  padding: 0;
  margin: 0;
}
.why__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 32px;
  text-align: left;
}
.why__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-num);
  font-size: 16.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 22px;
}
.why__title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.35;
  margin: 0 0 32px;
  letter-spacing: 0.03em;
}
.why__title em { color: var(--pink); font-style: normal; }
.why__lead {
  font-size: 23.5px;
  line-height: 2.2;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.why__lead b { color: var(--ink); font-weight: 900; background: linear-gradient(transparent 65%, var(--pink-soft) 65%); padding: 0 .15em; }
.why__lead--small { font-size: 22.5px; color: var(--ink-soft); opacity: 0.8; margin-top: 40px; }
@media (max-width: 720px) { .why__inner { padding: 80px 20px; } }

/* =========================================================
   PRICE
   ========================================================= */
.price__tabs { margin-bottom: 0; }
.price__tabs::before {
  content: "プランをお選びください";
  display: block;
  text-align: center;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0.9;
}
.price__tab-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 64px;
  padding: 0 16px;
}
@media (max-width: 720px) {
  .price__tab-row { grid-template-columns: 1fr; gap: 10px; padding: 0; margin-bottom: 48px; }
}
.price__tab {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  font-family: var(--font-main);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
  text-align: left;
  box-shadow: 0 2px 0 rgba(43,35,32,0.04);
}
.price__tab:hover:not(.is-active) {
  border-color: var(--pink-soft);
  color: var(--ink);
  transform: translateY(-2px);
}
.price__tab-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--cream-2);
  color: var(--ink-soft);
  border-radius: 12px;
  transition: all .2s ease;
}
.price__tab-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.price__tab-label {
  font-weight: 900;
  font-size: 23.5px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.price__tab-sub {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.price__tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(43,35,32,0.18);
  transform: translateY(-2px);
}
.price__tab.is-active .price__tab-label { color: var(--cream); }
.price__tab.is-active .price__tab-sub { color: var(--pink-soft); }
.price__tab.is-active .price__tab-icon { background: var(--pink); color: var(--ink); }
.price__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--ink);
}

.price__panels { position: relative; }
.price__panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.price__panel.is-active { display: grid; }
.price__panel[data-panel="spot"] { grid-template-columns: 1fr; max-width: 500px; }
@media (max-width: 720px) { .price__panel { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.price-card--highlight {
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff 0%, #FFFAF9 100%);
}
.price-card--spot {
  background: linear-gradient(165deg, var(--cream-2) 0%, #fff 100%);
}
.price-card__badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--cream);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 15.5px; font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(43,35,32,0.15);
}
.price-card__badge--hot { background: var(--pink); color: var(--ink); }
.price-card__name {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.price-card__name em { color: var(--pink); font-style: normal; font-family: var(--font-num); font-size: 28px; }
.price-card__amount {
  display: flex; align-items: baseline; justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.price-card__yen { font-family: var(--font-num); font-size: 24px; font-weight: 600; color: var(--ink); }
.price-card__num {
  font-family: var(--font-num); font-style: italic;
  font-weight: 600;
  font-size: 54px; line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-card__unit {
  font-size: 21px; color: var(--ink-soft); font-weight: 500;
  margin-left: 4px;
}
.price-card__desc {
  font-size: 21px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  padding: 16px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  line-height: 1.8;
}
.price-card__save {
  display: inline-block;
  background: var(--pink-soft); color: var(--ink);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}
.price-card__features {
  list-style: none; margin: 0; padding: 0;
  font-size: 21px; text-align: left;
}
.price-card__features li b { font-weight: 900; color: var(--ink); }
.price-card__note {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  text-align: left;
}
.price-card__features li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--ink-soft);
}
.price-card__features li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px;
  background: var(--pink-soft);
  border-radius: 50%;
}
.price-card__features li::after {
  content: "";
  position: absolute; left: 4px; top: 17px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: rotate(-45deg);
}

.price__note {
  text-align: center;
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 32px;
}

/* =========================================================
   FLOW
   ========================================================= */
.flow__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 880px; margin: 0 auto;
}
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  transition: transform .2s ease;
}
.flow-step:hover { transform: translateX(4px); }
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute; bottom: -14px; left: 60px;
  width: 2px; height: 12px;
  background: var(--pink);
  border-radius: 2px;
}
.flow-step__no {
  width: 64px; height: 64px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
}
.flow-step__no::before {
  content: "";
  position: absolute; inset: -4px;
  border: 1px dashed var(--pink);
  border-radius: 50%;
}
.flow-step__no span {
  font-family: var(--font-num); font-style: italic;
  font-weight: 600; font-size: 22px;
  color: var(--ink);
}
.flow-step__body h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.flow-step__body p {
  margin: 0;
  font-size: 20.5px;
  color: var(--ink-soft);
  line-height: 1.95;
}
.flow-step__icon {
  color: var(--pink);
  opacity: 0.6;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .flow-step { grid-template-columns: auto 1fr; padding: 20px 20px; gap: 16px; }
  .flow-step__icon { display: none; }
}

/* =========================================================
   VOICE
   ========================================================= */
.voice {
  background: var(--ink);
  color: var(--cream);
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 32px;
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}
.voice .section__title, .voice .section__lead {
  color: var(--cream);
}
.voice .section__head { max-width: none; margin: 0 0 64px; }
.voice__grid { max-width: none; margin: 0; }
.voice .section__lead { opacity: 0.7; }
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--container); margin: 0 auto;
}
@media (max-width: 1000px) { .voice__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .voice__grid { grid-template-columns: 1fr; } }

.voice-card {
  background: #3a2f2b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.voice-card::before {
  content: """;
  position: absolute;
  top: 12px; left: 20px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--pink);
  opacity: 0.3;
  line-height: 1;
}
.voice-card--accent { background: linear-gradient(165deg, #4a3a35 0%, #3a2f2b 100%); border-color: rgba(232,164,168,0.3); }
.voice-card__stars {
  color: var(--amber);
  font-size: 24px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.voice-card__text {
  margin: 0 0 20px;
  font-size: 21.5px;
  line-height: 2;
  position: relative; z-index: 1;
}
.voice-card__meta {
  display: flex; gap: 16px;
  font-size: 16px;
  color: var(--pink-soft);
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.voice-card__meta span { opacity: 0.7; }

/* =========================================================
   AREA
   ========================================================= */
.area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .area__inner { grid-template-columns: 1fr; } }

.area__dl {
  display: flex; flex-direction: column;
  gap: 20px;
  margin: 32px 0 0;
}
.area__dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px dashed var(--border);
}
.area__dl > div:last-child { border-bottom: 1px dashed var(--border); }
.area__dl dt {
  font-family: var(--font-num);
  font-size: 14.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  padding-top: 6px;
}
.area__dl dd {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.85;
}
.area__dl dd b { font-weight: 900; font-size: 29px; color: var(--ink); }
.area__dl dd small { color: var(--ink-soft); font-size: 19.5px; font-weight: 500; display: block; margin-top: 6px; }

.area__map {
  position: relative;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 0;
  aspect-ratio: 4/3;
  border: 2px solid var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area__map-overlay {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.area__map-iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.area__map-tag {
  position: absolute;
  z-index: 2;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--pink);
  top: 16px; left: 16px;
}
.area__map-cities {
  position: absolute;
  z-index: 2;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.area__map-cities span {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 4px;
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 22.5px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--pink-soft);
  color: var(--pink);
  font-family: var(--font-num); font-style: italic; font-weight: 600;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
}
.faq-item__chev {
  margin-left: auto;
  font-size: 20px;
  color: var(--pink);
  transition: transform .2s;
}
.faq-item[open] .faq-item__chev { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px 72px;
  font-size: 21px;
  color: var(--ink-soft);
  line-height: 2;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  background: linear-gradient(165deg, var(--pink-soft) 0%, #FFF1E6 50%, var(--cream-2) 100%);
  overflow: hidden;
  padding: 120px 32px;
}
.cta__bg-paws {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(232,164,168,0.3) 0, rgba(232,164,168,0.3) 4px, transparent 4.5px),
    radial-gradient(circle at 88% 70%, rgba(143,165,138,0.3) 0, rgba(143,165,138,0.3) 4px, transparent 4.5px);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta__logo img { width: 120px; margin: 0 auto 24px; }
.cta__title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.3;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
.cta__lead {
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0 0 40px;
}
.cta__btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 32px 32px;
}
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img.footer__logo-img { filter: none; background: #fff; border-radius: 50%; padding: 4px; }
@media (max-width: 720px) { .footer__brand { justify-content: center; } }
.footer__name { font-weight: 900; font-size: 24px; }
.footer__name em { color: var(--pink); font-style: normal; }
.footer__tag {
  font-family: var(--font-num);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink-soft); opacity: 0.7;
  margin-top: 2px;
}
.footer__nav { display: flex; gap: 20px; font-size: 19px; justify-content: center; flex-wrap: wrap; }
.footer__nav a { opacity: 0.7; }
.footer__nav a:hover { opacity: 1; color: var(--pink); }
.footer__copyright {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* =========================================================
   TWEAKS panel
   ========================================================= */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  width: 260px;
  font-size: 13px;
  display: none;
}
.tweaks-panel.is-visible { display: block; }
.tweaks-panel h4 {
  margin: 0 0 14px;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 14px;
}
.tweaks-row { margin-bottom: 14px; }
.tweaks-row label { display: block; font-size: 11px; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.tweaks-swatches { display: flex; gap: 6px; }
.tweaks-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 0;
}
.tweaks-swatch.is-active { border-color: var(--ink); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink); }
.tweaks-panel select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
}
