:root {
  --wine: #69203f;
  --rose: #d24c7d;
  --pink: #f64078;
  --gold: #d8a64c;
  --gold-light: #fff1a8;
  --mint: #21bfa6;
  --ink: #242630;
  --muted: #666d7a;
  --line: #ecd4a8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(105, 32, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 241, 168, 0.92), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 128, 170, 0.3), transparent 26%),
    radial-gradient(circle at 94% 16%, rgba(216, 166, 76, 0.52), transparent 24%),
    radial-gradient(circle at 8% 78%, rgba(33, 191, 166, 0.18), transparent 22%),
    radial-gradient(circle at 18% 12%, rgba(255, 241, 168, 0.6), transparent 22%),
    radial-gradient(circle at 84% 4%, rgba(210, 76, 125, 0.35), transparent 24%),
    linear-gradient(135deg, rgba(216, 166, 76, 0.12) 0 25%, transparent 25% 50%, rgba(33, 191, 166, 0.07) 50% 75%, transparent 75%),
    linear-gradient(180deg, #fffdf8 0%, #fff7fb 38%, #f8fffd 72%, #ffffff 100%);
  background-size: auto, auto, auto, auto, auto, auto, 28px 28px, auto;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(14px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 166, 76, 0.42);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--gold));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(105, 32, 63, 0.2);
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 65px);
  padding: clamp(34px, 7vw, 86px) clamp(16px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 241, 168, 0.95), transparent 25%),
    radial-gradient(circle at 44% 80%, rgba(255, 178, 204, 0.32), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(33, 191, 166, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 239, 0.7)),
    radial-gradient(circle at 68% 26%, rgba(255, 241, 168, 0.9), transparent 24%),
    radial-gradient(circle at 92% 68%, rgba(210, 76, 125, 0.28), transparent 26%);
  border-bottom: 1px solid rgba(216, 166, 76, 0.4);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 166, 76, 0.32);
  border-radius: 8px;
  pointer-events: none;
}

.sparkle-layer::before,
.sparkle-layer::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 241, 168, 0.72), rgba(255, 255, 255, 0) 68%);
  animation: floatGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.sparkle-layer::before {
  top: 8%;
  right: 12%;
}

.sparkle-layer::after {
  bottom: 12%;
  left: 8%;
  animation-delay: 1.6s;
}

.label {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.shine-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose), var(--gold));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(105, 32, 63, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--wine);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.12;
  text-shadow: 0 2px 0 #fff, 0 14px 34px rgba(105, 32, 63, 0.16);
}

.lead {
  margin-bottom: 26px;
  color: #424650;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.9;
}

.hero-rank {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 166, 76, 0.52);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(105, 32, 63, 0.12);
}

.hero-rank strong {
  color: var(--wine);
  font-size: 24px;
}

.hero-rank span {
  color: var(--muted);
  font-weight: 800;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--wine);
  background: linear-gradient(135deg, #fff3a3, #fff, #ffd7e6);
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(216, 166, 76, 0.18);
  font-weight: 900;
  animation: badgeGlow 3.2s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 4% -6% 8% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 241, 168, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(105, 32, 63, 0.14), rgba(216, 166, 76, 0.28));
  border-radius: 8px;
  filter: blur(2px);
}

.main-woman {
  width: min(100%, 620px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: 0 34px 88px rgba(105, 32, 63, 0.3), 0 0 0 2px rgba(216, 166, 76, 0.62), 0 0 44px rgba(255, 241, 168, 0.5);
}

.top-main-image {
  width: min(100%, 680px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-card {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  width: min(88%, 360px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 166, 76, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-card img,
.chat-head img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(105, 32, 63, 0.14);
}

.profile-card span,
.chat-head span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.profile-card strong {
  display: block;
  color: var(--wine);
  font-size: 18px;
}

.profile-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.hero-mini-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 3px solid rgba(216, 166, 76, 0.62);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(105, 32, 63, 0.16);
}

.hero-cards {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(216, 166, 76, 0.62);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(105, 32, 63, 0.2);
  overflow: hidden;
}

.hana-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 226, 0.92)),
    linear-gradient(120deg, rgba(255, 241, 168, 0.7), rgba(255, 215, 230, 0.38));
}

.mint-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 247, 0.92)),
    linear-gradient(120deg, rgba(246, 64, 120, 0.12), rgba(33, 191, 166, 0.12));
}

.service-card::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -40%;
  width: 28%;
  height: 190%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: rotate(18deg);
  animation: cardShine 4.4s ease-in-out infinite;
}

.mint-card::after {
  animation-delay: 1.2s;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 36px);
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
}

.card-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
  overflow: hidden;
  animation: buttonPulse 2.8s ease-in-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -45%;
  width: 32%;
  height: 160%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: rotate(18deg);
  animation: buttonShine 3.2s ease-in-out infinite;
}

.button::after {
  content: ">";
  margin-left: 12px;
}

.gold-button {
  background: linear-gradient(135deg, var(--wine), #c94f7c 46%, var(--gold));
}

.pink-button {
  background: linear-gradient(135deg, var(--pink), #ff7aa0);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) clamp(16px, 4vw, 34px);
}

.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 241, 168, 0.38), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(33, 191, 166, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 226, 0.5));
}

.preview-section {
  max-width: 1180px;
}

.large-preview {
  margin: 0;
  padding: clamp(10px, 2vw, 18px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 248, 0.9)),
    radial-gradient(circle at 82% 10%, rgba(255, 241, 168, 0.72), transparent 30%);
  border: 1px solid rgba(216, 166, 76, 0.58);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(105, 32, 63, 0.18);
}

.large-preview img {
  display: block;
  width: 100%;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(105, 32, 63, 0.14);
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.empathy-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 166, 76, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.empathy-grid h3 {
  color: var(--wine);
  font-size: 22px;
}

.empathy-grid p {
  color: var(--muted);
  line-height: 1.85;
}

.app-image-section,
.future-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.future-section {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.visual-copy h2 {
  margin-bottom: 14px;
  color: var(--wine);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
}

.visual-copy p {
  color: #424650;
  line-height: 1.9;
}

.visual-panel {
  position: relative;
  margin: 0;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  background: linear-gradient(135deg, var(--gold-light), #ffd7e6, #fff);
  border-radius: 8px;
}

.visual-panel img {
  display: block;
  width: 100%;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(105, 32, 63, 0.2);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2,
.cta-band h2 {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
}

.compare-table {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(216, 166, 76, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compare-table > div {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.2fr;
  border-bottom: 1px solid #eadbbd;
}

.compare-table > div:last-child {
  border-bottom: 0;
}

.compare-table span {
  padding: 16px;
  border-right: 1px solid #eadbbd;
  line-height: 1.75;
}

.compare-table span:last-child {
  border-right: 0;
}

.compare-head {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--gold));
  font-weight: 900;
}

.point-tables,
.reputation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.point-card,
.reputation-grid article {
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 226, 0.86)),
    radial-gradient(circle at 88% 16%, rgba(255, 241, 168, 0.5), transparent 30%);
  border: 1px solid rgba(216, 166, 76, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reputation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.point-card h3,
.reputation-grid h3 {
  margin-bottom: 16px;
  color: var(--wine);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
}

.point-card table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eadbbd;
  border-radius: 8px;
}

.point-card th,
.point-card td {
  padding: 12px 10px;
  border-bottom: 1px solid #eadbbd;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.point-card tr:last-child th,
.point-card tr:last-child td {
  border-bottom: 0;
}

.point-card th {
  width: 62%;
  color: #3d424c;
  font-weight: 800;
}

.point-card td {
  color: var(--wine);
  font-weight: 900;
}

.point-card p,
.reputation-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.campaign-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  background:
    linear-gradient(135deg, rgba(105, 32, 63, 0.92), rgba(210, 76, 125, 0.88) 48%, rgba(216, 166, 76, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(255, 241, 168, 0.6), transparent 28%);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(105, 32, 63, 0.24);
}

.chat-section {
  max-width: 1180px;
}

.chat-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.featured-girls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 28px auto 0;
}

.featured-girls figure {
  margin: 0;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 248, 0.88)),
    radial-gradient(circle at 86% 12%, rgba(255, 241, 168, 0.64), transparent 28%);
  border: 1px solid rgba(216, 166, 76, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-girls img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(105, 32, 63, 0.16);
}

.featured-girls figcaption {
  padding: 12px 4px 2px;
  color: var(--wine);
  font-weight: 900;
  text-align: center;
}

.chat-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 226, 0.78)),
    radial-gradient(circle at 80% 12%, rgba(255, 241, 168, 0.46), transparent 28%);
  border: 1px solid rgba(216, 166, 76, 0.52);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.chat-head img {
  width: 58px;
  height: 58px;
}

.chat-head strong {
  display: block;
  color: var(--wine);
}

.chat-members {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px 70px;
}

.chat-members img,
.profile-gallery img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(105, 32, 63, 0.14);
}

.message {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.7;
  box-shadow: 0 8px 18px rgba(105, 32, 63, 0.08);
}

.message.other {
  color: #3d424c;
  background: #fff;
  border: 1px solid rgba(216, 166, 76, 0.36);
}

.message.me {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px auto 0;
  padding: 16px;
  max-width: 1040px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 166, 76, 0.38);
  border-radius: 8px;
}

.large-profiles figure {
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(216, 166, 76, 0.36);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(105, 32, 63, 0.08);
}

.profile-gallery img,
.large-profiles img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(105, 32, 63, 0.14);
}

.large-profiles figcaption {
  padding-top: 8px;
  color: var(--wine);
  font-weight: 900;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.related-grid a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 28px;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 226, 0.86)),
    radial-gradient(circle at 88% 16%, rgba(255, 241, 168, 0.5), transparent 30%);
  border: 1px solid rgba(216, 166, 76, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
  overflow: hidden;
}

.detail-card {
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(105, 32, 63, 0.22);
}

.hana-detail {
  border: 2px solid rgba(216, 166, 76, 0.68);
}

.mint-detail {
  border: 2px solid rgba(246, 64, 120, 0.36);
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--gold));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.related-grid a::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -40%;
  width: 30%;
  height: 190%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: rotate(18deg);
  animation: cardShine 4.4s ease-in-out infinite;
}

.related-grid strong {
  color: var(--wine);
  font-size: 22px;
}

.related-grid span {
  color: var(--muted);
  line-height: 1.75;
}

.related-grid em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  border-radius: 8px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(105, 32, 63, 0.16);
}

.related-grid em::after {
  content: ">";
  margin-left: 10px;
}

.detail-direct-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.dialogue-section {
  max-width: 1040px;
}

.dialogue-list {
  display: grid;
  gap: 18px;
}

.dialogue-card {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 226, 0.86)),
    radial-gradient(circle at 90% 20%, rgba(255, 241, 168, 0.42), transparent 30%);
  border: 1px solid rgba(216, 166, 76, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dialogue-card h3 {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: clamp(22px, 3vw, 30px);
}

.talk {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.talk:last-child {
  margin-bottom: 0;
}

.face {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff7aa0);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(246, 64, 120, 0.18);
}

.adviser .face {
  background: linear-gradient(135deg, var(--wine), var(--gold));
}

.talk p {
  margin: 0;
  padding: 16px 18px;
  color: #424650;
  background: #fff;
  border: 1px solid rgba(216, 166, 76, 0.42);
  border-radius: 8px;
  line-height: 1.85;
}

.campaign-strip h2,
.campaign-strip p,
.campaign-strip .label {
  color: #fff;
}

.campaign-strip p {
  line-height: 1.85;
}

.recommend-grid article,
.notice,
.cta-band {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 166, 76, 0.48);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recommend-grid h3 {
  color: var(--wine);
  font-size: 26px;
}

.recommend-grid ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: #424650;
  line-height: 1.8;
}

.cta-band {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 243, 245, 0.76)),
    linear-gradient(120deg, #fff1a8, #ffd7e6 48%, #f8c565);
}

.cta-band p,
.notice p {
  color: var(--muted);
  line-height: 1.85;
}

.big {
  min-height: 62px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 18px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sticky-cta a {
  width: min(100%, 560px);
  pointer-events: auto;
}

.site-footer {
  padding: 30px 16px 98px;
  color: #fff;
  background: #292732;
  text-align: center;
}

@keyframes cardShine {
  0% {
    left: -40%;
    opacity: 0;
  }
  22% {
    opacity: 0.9;
  }
  48% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes buttonShine {
  0% {
    left: -45%;
    opacity: 0;
  }
  22% {
    opacity: 0.95;
  }
  48% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 34px rgba(105, 32, 63, 0.2);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 20px 46px rgba(216, 166, 76, 0.38), 0 0 0 4px rgba(255, 232, 141, 0.2);
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(216, 166, 76, 0.18);
  }
  50% {
    box-shadow: 0 14px 32px rgba(216, 166, 76, 0.36), 0 0 0 4px rgba(255, 243, 163, 0.32);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-18px) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sparkle-layer::before,
  .sparkle-layer::after,
  .service-card::after,
  .button,
  .button::before,
  .hero-badges span {
    animation: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-portrait {
    min-height: auto;
  }

  .main-woman {
    width: min(100%, 440px);
  }

  .profile-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

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

  .hero-mini-gallery {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 16 / 9;
  }

  .compare-table > div {
    grid-template-columns: 1fr;
  }

  .compare-table span {
    border-right: 0;
    border-bottom: 1px solid #eadbbd;
  }

  .compare-table span:last-child {
    border-bottom: 0;
  }

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

  .empathy-grid,
  .chat-card-grid,
  .featured-girls,
  .profile-gallery,
  .app-image-section,
  .future-section,
  .point-tables,
  .reputation-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .campaign-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 14px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }
}
