@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&family=Noto+Sans+JP:wght@400;500;700;800&family=Noto+Serif+JP:wght@600;700&display=swap");

:root {
  --bg: #fff7fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #1a1a1a;
  --muted: #6a5b66;
  --primary: #ea5f9c;
  --primary-deep: #c53b7e;
  --accent: #111111;
  --line: rgba(17, 17, 17, 0.08);
  --shadow: 0 20px 60px rgba(218, 92, 147, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  /* Home ヒーロー右・Concept ダークパネルなどで共通の柔らかいピンクトーン */
  --surface-hero-visual:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(
      155deg,
      rgba(255, 246, 250, 0.96) 0%,
      rgba(255, 236, 246, 0.88) 56%,
      rgba(250, 211, 230, 0.86) 100%
    );
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-heading: "Noto Serif JP", "Noto Sans JP", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* sticky ヘッダーが効くよう横だけ html でクリップ（body に overflow があると sticky が壊れやすい） */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 185, 214, 0.7), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255, 210, 230, 0.8), transparent 20%),
    linear-gradient(180deg, #fff8fb 0%, #fff 40%, #fff6fa 100%);
  line-height: 1.7;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 251, 0.72);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 14px 28px rgba(197, 59, 126, 0.28);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.brand-mark::before {
  width: 18px;
  height: 18px;
  top: 8px;
  right: 8px;
}

.brand-mark::after {
  width: 30px;
  height: 3px;
  left: 7px;
  bottom: 11px;
  transform: rotate(-28deg);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 17, 17, 0.05);
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.site-nav a,
.mobile-panel a {
  transition: 0.25s ease;
}

.site-nav a {
  padding: 10px 14px;
  font-size: 0.92rem;
  border-radius: 999px;
  color: #423842;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(234, 95, 156, 0.12);
  color: var(--accent);
}

.header-cta,
.btn,
.btn-outline {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-cta,
.btn {
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 18px 32px rgba(197, 59, 126, 0.24);
}

.btn-outline {
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.header-cta:hover,
.btn:hover,
.btn-outline:hover,
.service-card:hover,
.teaser-card:hover {
  transform: translateY(-3px);
}

.header-cta::after,
.btn::after,
.btn-outline::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.45) 50%, transparent 76%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  z-index: -1;
}

.header-cta:hover::after,
.btn:hover::after,
.btn-outline:hover::after {
  transform: translateX(130%);
}

.menu-toggle {
  display: none;
  min-width: 92px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 0.88rem;
}

.menu-toggle-icon {
  position: relative;
  width: 20px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon span,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  position: absolute;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-icon span {
  transform: translateY(0);
}

.menu-toggle-icon::before {
  transform: translateY(-6px);
}

.menu-toggle-icon::after {
  transform: translateY(6px);
}

.menu-toggle.active .menu-toggle-icon span {
  opacity: 0;
}

.menu-toggle.active .menu-toggle-icon::before {
  transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-icon::after {
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.menu-open {
  overflow: hidden;
}

.mobile-panel a {
  display: block;
  padding: 14px 12px;
  border-radius: 16px;
}

.mobile-panel a:hover,
.mobile-panel a[aria-current="page"] {
  background: rgba(234, 95, 156, 0.08);
}

.mobile-panel .btn {
  width: 100%;
  margin-top: 8px;
}

.hero {
  padding: 34px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.page-hero,
.service-card,
.panel,
.contact-item,
.teaser-card,
.content-card {
  border: 1px solid rgba(17, 17, 17, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-copy {
  padding: 42px 46px;
}

.hero-copy h1 {
  margin: 18px 0 14px;
  max-width: 10.8em;
  font-size: clamp(2.2rem, 3vw, 3.45rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.hero-copy::before,
.page-hero::before,
.content-card::before,
.panel::before,
.contact-item::before,
.teaser-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 42%, rgba(234, 95, 156, 0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-copy:hover::before,
.page-hero:hover::before,
.content-card:hover::before,
.panel:hover::before,
.contact-item:hover::before,
.teaser-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(234, 95, 156, 0.12);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p,
li,
.btn,
.btn-outline,
.eyebrow,
.hero-badges span,
.tags span,
.mini-card,
.hero-chip,
.float-card {
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

p,
li {
  text-wrap: pretty;
}

.btn,
.btn-outline,
.hero-badges span,
.tags span {
  white-space: nowrap;
}

h1 {
  margin: 22px 0 16px;
  font-size: clamp(2.3rem, 3.55vw, 4.05rem);
  line-height: 1.16;
}

.hero-copy p,
.page-hero p,
.section-head p,
.service-card p,
.panel p,
.contact-item p,
.teaser-card p,
.content-card p,
.list-card li {
  color: var(--muted);
}

.hero-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 48ch;
}

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

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

.hero-badges {
  margin-top: 22px;
}

.hero-badges span,
.tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
  color: #463f45;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-badges span:hover,
.tags span:hover {
  transform: translateY(-2px);
  background: rgba(234, 95, 156, 0.14);
  box-shadow: 0 14px 24px rgba(234, 95, 156, 0.12);
}

.hero-visual {
  min-height: auto;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 16px;
  border: 0;
  background: var(--surface-hero-visual);
}

.hero-visual .hero-figure {
  position: absolute;
  right: 30px;
  top: 50px;
  z-index: 1;
  width: min(70%, 400px);
  margin: 0;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  animation: floatSoft 7.4s ease-in-out infinite;
}

.hero-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  width: 100%;
}

.hero-collage-item {
  position: relative;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 38px rgba(218, 92, 147, 0.14);
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage-item-1 {
  grid-row: span 2;
  width: auto;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  animation: none;
}

.hero-collage-item-2 {
  width: auto;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.hero-collage-item-3 {
  width: auto;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.42), transparent 22%),
    radial-gradient(circle at 80% 25%, rgba(255, 214, 232, 0.28), transparent 20%),
    radial-gradient(circle at 55% 80%, rgba(255, 255, 255, 0.26), transparent 24%);
  animation: glowDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.phone-mock {
  position: absolute;
  right: 32px;
  top: 40px;
  width: min(82%, 380px);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  padding: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  animation: floatSoft 7.2s ease-in-out infinite;
}

.phone-notch {
  width: 34%;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: rgba(16, 16, 16, 0.88);
  margin: -16px auto 10px;
}

.phone-screen {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 242, 248, 0.92));
  border-radius: 24px;
  padding: 18px;
  min-height: 470px;
  color: var(--text);
}

.mini-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #5f5560;
}

.mini-hero {
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(160deg, #151515, #ea5f9c);
  color: #fff;
  box-shadow: 0 20px 34px rgba(234, 95, 156, 0.28);
}

.mini-hero strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.mini-grid,
.teaser-grid,
.content-grid,
.contact-grid,
.coming-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.mini-card {
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 18px 28px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(17, 17, 17, 0.08);
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

.float-card {
  display: none;
}

.float-card strong {
  font-size: 0.96rem;
  display: block;
  margin-bottom: 6px;
}

.float-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4d4249;
}

.hero-chip-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  pointer-events: auto;
}

.hero-chip {
  position: static;
  width: auto;
  min-height: 78px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 0;
  box-shadow: 0 14px 30px rgba(218, 92, 147, 0.1);
  backdrop-filter: blur(10px);
}

.hero-chip strong {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hero-chip span {
  display: block;
  color: #4d4249;
  font-size: 0.76rem;
  line-height: 1.45;
}

main section {
  padding: 34px 0;
}

.page-hero {
  border-radius: var(--radius-xl);
  padding: 42px;
  margin-top: 34px;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.1vw, 3.45rem);
}

.page-hero p {
  margin: 0;
  max-width: 56ch;
  font-size: 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.24;
}

.section-head p {
  margin: 0;
  max-width: 50ch;
}

.teaser-grid,
.content-grid,
.coming-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.recycling-grid .content-card:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.teaser-card,
.content-card,
.contact-item,
.panel,
.service-card {
  border-radius: 28px;
  padding: 28px;
}

.teaser-card,
.content-card {
  display: block;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.teaser-card:hover {
  box-shadow: 0 24px 50px rgba(218, 92, 147, 0.18);
}

.teaser-card strong,
.content-card strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.16rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.teaser-card span {
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  box-shadow: 0 24px 50px rgba(218, 92, 147, 0.18);
}

.panel,
.contact-item,
.page-hero {
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.panel:hover,
.contact-item:hover,
.page-hero:hover,
.content-card:hover,
.teaser-card:hover,
.service-card:hover {
  border-color: rgba(234, 95, 156, 0.12);
  box-shadow: 0 28px 56px rgba(218, 92, 147, 0.16);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(234, 95, 156, 0.16), transparent 66%);
}

.service-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-deep);
  background: rgba(234, 95, 156, 0.1);
  margin-bottom: 14px;
}

.service-card .tags {
  margin-top: auto;
}

.service-card h3,
.panel h3,
.contact-item h3,
.content-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.36;
}

.service-card p,
.panel p,
.contact-item p,
.content-card p,
.teaser-card p {
  margin: 0 0 16px;
  font-size: 0.96rem;
}

.products-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.products-card .card-media {
  margin-bottom: 0;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}

.products-card p {
  margin: 0;
  max-width: 34em;
}

.contact-form-card {
  display: block;
  position: relative;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 700;
  color: #2f262b;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
  font: inherit;
  color: #2f262b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(234, 95, 156, 0.55);
  box-shadow: 0 0 0 4px rgba(234, 95, 156, 0.14);
}

.contact-form .btn {
  margin-top: 6px;
  width: fit-content;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Concept 上段パネルなど：ホーム右（.hero-visual）と同じ淡いピンクトーン＋本文は通常コントラスト */
.panel.dark {
  border: 0;
  color: var(--text);
  background: var(--surface-hero-visual);
  box-shadow: 0 18px 38px rgba(218, 92, 147, 0.12);
}

.panel.dark h3,
.panel.dark strong {
  color: var(--text);
}

.panel.dark p {
  color: var(--muted);
}

.cta-band {
  color: #fff;
  border: 0;
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(78, 35, 55, 0.96), rgba(214, 91, 146, 0.94));
  box-shadow: 0 30px 60px rgba(197, 59, 126, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
  animation: sheenLoop 10s linear infinite;
  pointer-events: none;
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.38;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.list-card ul {
  margin: 0;
  padding-left: 18px;
}

.list-card li + li {
  margin-top: 8px;
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
}

.loading-section {
  min-height: min(70vh, 620px);
  padding: 84px 0 54px;
  display: grid;
  place-items: center;
}

.loading-display {
  margin: 0 auto;
  text-align: center;
}

.loading-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 16px 32px rgba(197, 59, 126, 0.22);
  position: relative;
  overflow: hidden;
  animation: loadingFloat 2.6s ease-in-out infinite;
}

.loading-mark::before,
.loading-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.loading-mark::before {
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
}

.loading-mark::after {
  width: 34px;
  height: 3px;
  left: 9px;
  bottom: 13px;
  transform: rotate(-28deg);
}

.loading-label {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.loading-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(197, 59, 126, 0.42);
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.site-footer {
  padding: 28px 0 52px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.75s ease,
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(197, 59, 126, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(197, 59, 126, 0.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top span {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--primary-deep);
  border-left: 2px solid var(--primary-deep);
  transform: translate(-50%, -50%) rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(197, 59, 126, 0.24);
  transform: translateY(-2px);
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes glowDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(2%, 2%, 0) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translate3d(-1%, 3%, 0) scale(1.02);
    opacity: 0.78;
  }
}

@keyframes sheenLoop {
  0% {
    transform: translateX(-60%) rotate(10deg);
  }
  100% {
    transform: translateX(60%) rotate(10deg);
  }
}

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

@keyframes loadingPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.84);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-brand {
  min-width: 0;
}

.footer-business-name {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: 0.04em;
}

.footer-description {
  max-width: 38em;
  color: var(--muted);
}

.footer-description-line {
  margin: 0;
  line-height: 1.75;
}

.footer-description-line + .footer-description-line {
  margin-top: 0.35em;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.footer-nav-link {
  color: var(--text);
  opacity: 0.88;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--primary-deep);
  opacity: 1;
}

.footer-nav-link[aria-current="page"] {
  color: var(--primary-deep);
  font-weight: 500;
}

.footer-nav-sep {
  color: rgba(106, 91, 102, 0.42);
  font-weight: 400;
  user-select: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--primary-deep);
}

.footer-social-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-social-label {
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.footer-legal-link {
  font-size: 0.82rem;
  color: rgba(106, 91, 102, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(197, 59, 126, 0.22);
  text-underline-offset: 3px;
}

.footer-legal-link:hover {
  color: var(--primary-deep);
  text-decoration-color: rgba(197, 59, 126, 0.42);
}

.footer-copy {
  margin: 0;
  padding-top: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(106, 91, 102, 0.88);
}

@media (min-width: 720px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-brand {
    flex: 1;
    max-width: min(100%, 420px);
  }

  .footer-links-col {
    flex-shrink: 0;
    align-items: flex-end;
    text-align: right;
  }

  .footer-nav {
    justify-content: flex-end;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    padding: 36px;
  }

  .hero-copy h1 {
    max-width: 10.5em;
    font-size: clamp(2.05rem, 4.6vw, 3.05rem);
  }

  .hero-grid,
  .teaser-grid,
  .content-grid,
  .coming-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-head p {
    max-width: 42em;
  }

  .float-card {
    position: static;
    width: auto;
    margin-top: 18px;
  }

  .hero-chip-grid {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    pointer-events: auto;
  }

  .hero-chip,
  .hero-chip:nth-child(1),
  .hero-chip:nth-child(2),
  .hero-chip:nth-child(3),
  .hero-chip:nth-child(4) {
    position: static;
    width: auto;
  }

  .phone-mock {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    place-items: center;
    padding: 22px;
    gap: 14px;
  }

  .hero-visual .hero-figure {
    position: static;
    width: min(100%, 520px);
    margin: 0 auto;
    animation: none;
  }

  .hero-collage {
    position: static;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 12px;
    width: 100%;
  }

  .hero-collage-item,
  .hero-collage-item-1,
  .hero-collage-item-2,
  .hero-collage-item-3 {
    position: static;
    width: auto;
    animation: none;
  }

  .hero-collage-item-1 {
    grid-row: span 2;
    aspect-ratio: 4 / 3;
  }

  .hero-collage-item-2,
  .hero-collage-item-3 {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 920px) {
  /*
   * 狭い幅では position:sticky が効かない環境がある（Chrome DevTools のモバイル表示など）。
   * ヘッダーラッパーを fixed にし、本文側に同等の padding-top を確保する。
   */
  body:not(.admin-page) {
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
  }

  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    padding-top: env(safe-area-inset-top, 0px);
  }

  body:not(.admin-page) > header.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 110;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .site-header {
    position: relative;
    top: auto;
    z-index: 2;
    /* backdrop/filter があると fixed 子要素の基準がヘッダーになる環境があり、Menu が潰れる */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-open .site-header {
    background: rgba(255, 247, 251, 0.96);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

  .mobile-panel {
    display: none;
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 78px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 109;
    padding: 24px min(28px, 7vw) max(28px, env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(circle at 80% 0%, rgba(255, 210, 230, 0.52), transparent 28%),
      linear-gradient(180deg, rgba(255, 249, 252, 0.98), rgba(255, 239, 247, 0.98));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
  }

  .mobile-panel.open {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .mobile-panel a {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.05);
    box-shadow: 0 14px 28px rgba(218, 92, 147, 0.08);
    font-weight: 700;
  }

  .mobile-panel .btn {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
  }

  .menu-open .back-to-top {
    opacity: 0;
    pointer-events: none;
  }

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

  main section {
    padding: 28px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .menu-toggle {
    min-width: 86px;
    height: 44px;
    padding: 0 12px;
  }

  .menu-toggle-label {
    font-size: 0.82rem;
  }

  .mobile-panel {
    top: calc(env(safe-area-inset-top, 0px) + 68px);
  }

  .hero {
    padding-top: 20px;
  }

  .hero-copy,
  .hero-visual,
  .page-hero,
  .panel,
  .service-card,
  .cta-band,
  .contact-item,
  .teaser-card,
  .content-card {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 1.96rem;
    line-height: 1.22;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(1.82rem, 9vw, 2.25rem);
    line-height: 1.24;
  }

  .section-head h2 {
    font-size: clamp(1.46rem, 7vw, 1.9rem);
    line-height: 1.32;
  }

  .service-card h3,
  .panel h3,
  .contact-item h3,
  .content-card h3,
  .teaser-card strong,
  .content-card strong {
    font-size: 1.08rem;
    line-height: 1.42;
  }

  .hero-title-break {
    display: none;
  }

  .hero-copy p {
    font-size: 0.94rem;
    line-height: 1.75;
    word-break: normal;
  }

  .page-hero p,
  .section-head p,
  .service-card p,
  .panel p,
  .contact-item p,
  .teaser-card p,
  .content-card p,
  .list-card li {
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .hero-badges span,
  .tags span {
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.45;
    padding: 8px 11px;
  }

  .hero-actions,
  .button-row {
    gap: 10px;
  }

  .btn,
  .btn-outline {
    min-height: 44px;
    justify-content: center;
  }

  .cta-band .btn-outline,
  .contact-form .btn {
    width: 100%;
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .loading-section {
    min-height: min(62vh, 520px);
    padding: 48px 0 34px;
  }

  .phone-screen {
    min-height: 420px;
  }

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

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

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

  .hero-collage-item-1 {
    grid-row: auto;
  }

  .hero-collage-item-2,
  .hero-collage-item-3 {
    display: none;
  }

  .float-card,
  .hero-chip {
    padding: 12px 13px;
    border-radius: 18px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .cta-band h2,
  .cta-band h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 16px));
  }

  .brand-copy span {
    display: none;
  }

  .menu-toggle {
    min-width: 82px;
  }

  .hero-copy,
  .hero-visual,
  .page-hero,
  .panel,
  .service-card,
  .cta-band,
  .contact-item,
  .teaser-card,
  .content-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(1.72rem, 9.2vw, 2rem);
  }

  .hero-copy p,
  .page-hero p,
  .section-head p,
  .service-card p,
  .panel p,
  .contact-item p,
  .teaser-card p,
  .content-card p,
  .list-card li {
    font-size: 0.9rem;
  }
}

.card-media,
.page-hero-media,
.hero-figure {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.72);
}

.card-media {
  aspect-ratio: 16 / 10;
}

.page-hero-media,
.hero-figure {
  aspect-ratio: 4 / 3;
}

.image-card,
.image-hero,
.image-wide {
  width: 100%;
  object-fit: cover;
}

.image-card {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.image-hero {
  aspect-ratio: 4 / 3;
  border-radius: 28px;
}

.image-wide {
  aspect-ratio: 21 / 9;
  border-radius: 28px;
}

.card-media img,
.page-hero-media img,
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-media {
  margin-bottom: 0;
}

.hero-figure {
  width: min(100%, 420px);
  margin: 0 auto;
}

.inline-action,
.cta-band-link {
  align-self: flex-start;
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  width: min(1380px, calc(100% - 24px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.admin-sidebar,
.admin-main {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.admin-sidebar {
  padding: 24px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.admin-brand strong {
  font-size: 1.2rem;
}

.admin-brand p,
.admin-status,
.admin-preview-links a {
  color: var(--muted);
}

.admin-nav,
.admin-preview-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.admin-help-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.admin-help-card p {
  margin: 8px 0 12px;
  color: var(--muted);
}

.admin-help-card a,
.admin-preview-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(234, 95, 156, 0.1);
  color: var(--accent);
}

.admin-tab,
.admin-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.admin-tab {
  text-align: left;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.admin-tab.active {
  background: rgba(234, 95, 156, 0.12);
  color: var(--accent);
  border-color: rgba(234, 95, 156, 0.22);
}

.admin-main {
  padding: 28px;
}

.admin-toolbar,
.publish-panel {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}

.publish-panel {
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.backup-panel {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.undo-panel {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 246, 251, 0.88);
  border: 1px solid rgba(234, 95, 156, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.undo-panel p,
.undo-meta p {
  margin: 6px 0 0;
  color: var(--muted);
}

.undo-meta {
  text-align: right;
}

.undo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(234, 95, 156, 0.12);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

.backup-panel-head p,
.backup-item p,
.backup-empty {
  margin: 6px 0 0;
  color: var(--muted);
}

.backup-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.backup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.admin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-btn.subtle,
.file-button {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.admin-btn.danger {
  background: linear-gradient(135deg, #831f4b, #dd4f8c);
}

.file-button {
  position: relative;
  overflow: hidden;
}

.file-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.editor-form {
  margin-top: 24px;
}

.editor-group {
  margin: 0 0 22px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.62);
}

.editor-group legend {
  padding: 0 8px;
  font-weight: 700;
}

.editor-grid,
.array-list {
  display: grid;
  gap: 16px;
}

.editor-block,
.editor-row,
.upload-field {
  display: grid;
  gap: 8px;
}

.editor-block span,
.editor-row span,
.upload-field span {
  font-size: 0.92rem;
  color: var(--muted);
}

.editor-block input,
.editor-block textarea,
.upload-field input {
  width: 100%;
  font: inherit;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.checkbox-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.array-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.array-item-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

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

.image-group .image-preview {
  margin-bottom: 14px;
}

.image-group img,
.image-placeholder {
  width: min(100%, 320px);
  border-radius: 18px;
}

.image-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(17, 17, 17, 0.14);
  color: var(--muted);
}

.guide-grid,
.guide-steps {
  display: grid;
  gap: 18px;
}

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

.guide-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-step {
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
}

.guide-step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.guide-step p {
  margin: 0;
}

@media (max-width: 1080px) {
  .page-hero-with-media,
  .admin-shell,
  .guide-grid,
  .guide-steps {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .admin-main,
  .admin-sidebar,
  .editor-group,
  .publish-panel,
  .undo-panel,
  .backup-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .admin-shell {
    width: min(1380px, calc(100% - 16px));
    padding: 16px 0 24px;
  }
}

/* Base media rules above are intentionally refined after shared image/admin styles. */
@media (max-width: 920px) {
  .page-hero-with-media {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .card-media,
  .page-hero-media,
  .hero-figure {
    border-radius: 18px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .card-media,
  .page-hero-media,
  .hero-figure {
    border-radius: 16px;
  }
}

/* White base + black/pink accent overrides */
:root {
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #171419;
  --muted: #69636f;
  --primary: #eb6fa6;
  --primary-deep: #eb6fa6;
  --accent: #1f1f1f;
  --line: rgba(235, 111, 166, 0.2);
  --shadow: 0 20px 48px rgba(31, 31, 31, 0.1);
  --surface-hero-visual:
    radial-gradient(circle at 12% 12%, rgba(235, 111, 166, 0.2), transparent 38%),
    radial-gradient(circle at 92% 4%, rgba(235, 111, 166, 0.16), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(253, 244, 250, 0.98));
}

body {
  background:
    radial-gradient(circle at 5% 0%, rgba(235, 111, 166, 0.2), transparent 34%),
    radial-gradient(circle at 96% 10%, rgba(235, 111, 166, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f7f8 0%, #f3f3f5 100%);
  color: var(--text);
}

.site-header,
.menu-open .site-header {
  background: rgba(31, 31, 31, 0.92);
  border-bottom-color: rgba(235, 111, 166, 0.36);
}

.site-nav,
.menu-toggle {
  background: rgba(31, 31, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-nav a,
.menu-toggle {
  color: #fff;
}

.site-header .brand,
.site-header .brand-copy strong {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.site-header .brand-copy span {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.site-header .menu-toggle-label {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.site-header .menu-toggle-icon span,
.site-header .menu-toggle-icon::before,
.site-header .menu-toggle-icon::after {
  background: #fff;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.mobile-panel a:hover,
.mobile-panel a[aria-current="page"] {
  background: rgba(235, 111, 166, 0.22);
  color: #fff;
}

.btn-outline {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 31, 31, 0.16);
}

.hero-copy,
.hero-visual,
.page-hero,
.service-card,
.panel,
.contact-item,
.teaser-card,
.content-card,
.admin-sidebar,
.admin-main,
.guide-step,
.publish-panel,
.backup-panel,
.undo-panel,
.editor-group,
.array-item,
.admin-help-card,
.backup-item,
.image-placeholder,
.mini-card,
.hero-chip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 253, 0.94));
  border-color: rgba(31, 31, 31, 0.08);
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.08);
}

.hero-copy::before,
.page-hero::before,
.content-card::before,
.panel::before,
.contact-item::before,
.teaser-card::before,
.service-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%, rgba(235, 111, 166, 0.1));
}

.eyebrow,
.service-num,
.undo-badge,
.admin-help-card a,
.admin-preview-links a {
  background: rgba(235, 111, 166, 0.14);
  color: var(--primary-deep);
}

.hero-badges span,
.tags span {
  background: rgba(31, 31, 31, 0.05);
  color: #3f3840;
}

.hero-chip span,
.float-card p,
.mini-topbar,
.form-field span,
.contact-form input,
.contact-form select,
.contact-form textarea,
.editor-block span,
.editor-row span,
.upload-field span,
.editor-block input,
.editor-block textarea,
.upload-field input {
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.editor-block input,
.editor-block textarea,
.upload-field input {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 31, 31, 0.16);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.editor-block input:focus,
.editor-block textarea:focus,
.upload-field input:focus {
  border-color: rgba(235, 111, 166, 0.68);
  box-shadow: 0 0 0 4px rgba(235, 111, 166, 0.16);
}

.mini-card span,
.hero-copy p,
.page-hero p,
.section-head p,
.service-card p,
.panel p,
.contact-item p,
.teaser-card p,
.content-card p,
.list-card li,
.form-note,
.note,
.site-footer,
.footer-description,
.footer-social-link,
.admin-brand p,
.admin-status,
.admin-preview-links a,
.backup-panel-head p,
.backup-item p,
.backup-empty,
.footer-nav-link,
.footer-copy {
  color: var(--muted);
}

.admin-btn.subtle,
.file-button,
.admin-tab {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 31, 31, 0.14);
}

.mobile-panel {
  background:
    radial-gradient(circle at 84% 0%, rgba(235, 111, 166, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 255, 0.98), rgba(249, 245, 248, 0.98));
}

.mobile-panel a {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 31, 31, 0.08);
  color: var(--text);
}

.cta-band {
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.98), rgba(235, 111, 166, 0.88));
}

.card-media,
.page-hero-media,
.hero-figure {
  border-color: rgba(31, 31, 31, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

/* ===== Home neon pink redesign ===== */
body[data-page="home"] {
  --np-bg: #0f0f12;
  --np-bg-soft: #1a0b14;
  --np-pink: #ff4da6;
  --np-pink-bright: #ff8fcf;
  --np-pink-soft: #ffd1e6;
  --np-white: #ffffff;
  --np-text: #d9d9d9;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 77, 166, 0.26), transparent 26%),
    radial-gradient(circle at 16% 0%, rgba(255, 143, 207, 0.18), transparent 24%),
    linear-gradient(180deg, #0f0f12 0%, #140d13 45%, #0f0f12 100%);
  color: var(--np-text);
}

body[data-page="home"]::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 77, 166, 0.14), transparent 56%) 22% 18% / 36% 36% no-repeat,
    radial-gradient(circle, rgba(255, 143, 207, 0.11), transparent 58%) 78% 24% / 36% 36% no-repeat;
  animation: ambientShift 18s ease-in-out infinite alternate;
}

body[data-page="home"] .site-header {
  position: relative;
  top: auto;
  background: linear-gradient(90deg, rgba(15, 15, 18, 0.9), rgba(26, 11, 20, 0.78));
  border-bottom: 1px solid rgba(255, 143, 207, 0.28);
  backdrop-filter: blur(12px);
}

body[data-page="home"] .brand-copy strong,
body[data-page="home"] .brand-copy span,
body[data-page="home"] .site-nav a,
body[data-page="home"] .menu-toggle,
body[data-page="home"] .menu-toggle-label {
  color: var(--np-white);
}

body[data-page="home"] .brand-copy span {
  opacity: 0.8;
}

body[data-page="home"] .site-nav {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 143, 207, 0.28);
  box-shadow: 0 0 24px rgba(255, 77, 166, 0.12);
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a[aria-current="page"] {
  background: rgba(255, 77, 166, 0.22);
  color: var(--np-white);
}

body[data-page="home"] .header-cta {
  background: linear-gradient(135deg, #ff4da6, #ff8fcf);
  box-shadow:
    0 0 0 1px rgba(255, 209, 230, 0.35) inset,
    0 0 26px rgba(255, 77, 166, 0.55);
  animation: neonGlow 3.8s ease-in-out infinite;
}

body[data-page="home"] main section {
  padding: 56px 0;
}

body[data-page="home"] .np-section {
  position: relative;
}

body[data-page="home"] .np-section-label {
  margin: 0 0 10px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--np-pink-soft);
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3 {
  font-family: "Noto Serif JP", serif;
  color: var(--np-white);
}

body[data-page="home"] .np-hero-grid,
body[data-page="home"] .np-about-grid,
body[data-page="home"] .np-message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

body[data-page="home"] .np-hero-copy,
body[data-page="home"] .np-hero-art,
body[data-page="home"] .np-about-visual,
body[data-page="home"] .np-message-visual,
body[data-page="home"] .np-future-inner,
body[data-page="home"] .np-contact-inner {
  border: 1px solid rgba(255, 143, 207, 0.24);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(26, 11, 20, 0.88), rgba(18, 18, 23, 0.84));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.44),
    0 0 40px rgba(255, 77, 166, 0.12);
}

body[data-page="home"] .np-hero-copy {
  padding: 52px 50px;
}

body[data-page="home"] .np-kicker {
  margin: 0;
  color: var(--np-pink-soft);
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

body[data-page="home"] .np-hero-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.25;
}

body[data-page="home"] .np-script {
  margin: 0;
  font-family: "Dancing Script", cursive;
  color: var(--np-pink-bright);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  text-shadow: 0 0 16px rgba(255, 77, 166, 0.5);
}

body[data-page="home"] .np-lead {
  max-width: 42ch;
  margin: 16px 0 0;
  color: var(--np-text);
}

body[data-page="home"] .np-button-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body[data-page="home"] .np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 143, 207, 0.4);
  color: #fff;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

body[data-page="home"] .np-btn-primary {
  background: linear-gradient(135deg, #ff4da6, #ff8fcf);
  box-shadow: 0 0 22px rgba(255, 77, 166, 0.5);
}

body[data-page="home"] .np-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
}

body[data-page="home"] .np-btn-line {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 16px rgba(255, 77, 166, 0.3);
}

body[data-page="home"] .np-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 77, 166, 0.64);
  filter: brightness(1.06);
}

body[data-page="home"] .np-hero-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 28px;
}

body[data-page="home"] .np-neon-ring {
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(90%, 430px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 143, 207, 0.8);
  box-shadow:
    0 0 20px rgba(255, 143, 207, 0.72),
    0 0 58px rgba(255, 77, 166, 0.4),
    inset 0 0 34px rgba(255, 143, 207, 0.22);
  animation: neonGlow 4.2s ease-in-out infinite;
}

body[data-page="home"] .np-cosmetics {
  position: absolute;
  left: 50%;
  bottom: 82px;
  transform: translateX(-50%);
  width: min(94%, 450px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}

body[data-page="home"] .np-bottle {
  position: relative;
  display: inline-block;
  border-radius: 14px;
  border: 1px solid rgba(255, 209, 230, 0.5);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.22), rgba(255, 143, 207, 0.2));
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.12),
    0 18px 24px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(255, 77, 166, 0.28);
}

body[data-page="home"] .np-bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  width: 38%;
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 143, 207, 0.52));
}

body[data-page="home"] .np-bottle-tall {
  width: 62px;
  height: 154px;
}

body[data-page="home"] .np-bottle-dropper {
  width: 44px;
  height: 122px;
}

body[data-page="home"] .np-bottle-wide {
  width: 86px;
  height: 106px;
}

body[data-page="home"] .np-bottle-jar {
  width: 70px;
  height: 76px;
  border-radius: 18px;
}

body[data-page="home"] .np-bottle-mini {
  width: 38px;
  height: 96px;
}

body[data-page="home"] .np-floor-glow {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(96%, 480px);
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 143, 207, 0.54), rgba(255, 77, 166, 0.2) 55%, transparent 74%);
  filter: blur(8px);
}

body[data-page="home"] .np-about-grid {
  gap: 26px;
}

body[data-page="home"] .np-about-grid > div:first-child {
  padding-right: 14px;
}

body[data-page="home"] .np-about-grid p {
  margin: 0;
}

body[data-page="home"] .np-about-grid h2,
body[data-page="home"] .np-section-head h2,
body[data-page="home"] .np-message h2,
body[data-page="home"] .np-contact-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

body[data-page="home"] .np-about-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 143, 207, 0.22), transparent 42%),
    linear-gradient(155deg, rgba(44, 17, 31, 0.78), rgba(24, 13, 21, 0.88));
}

body[data-page="home"] .np-about-visual p {
  margin: 0;
  font-family: "Dancing Script", cursive;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--np-pink-bright);
  text-shadow: 0 0 20px rgba(255, 77, 166, 0.55);
}

body[data-page="home"] .np-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .np-service-card {
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 143, 207, 0.36);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 143, 207, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body[data-page="home"] .np-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 143, 207, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 143, 207, 0.36),
    0 0 26px rgba(255, 77, 166, 0.36),
    0 16px 34px rgba(0, 0, 0, 0.4);
}

body[data-page="home"] .np-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 143, 207, 0.66);
  box-shadow: 0 0 16px rgba(255, 77, 166, 0.4);
}

body[data-page="home"] .np-icon-wrap svg,
body[data-page="home"] .np-point-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffd1e6;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .np-service-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

body[data-page="home"] .np-service-card p {
  margin: 0;
  color: var(--np-text);
  font-size: 0.86rem;
}

body[data-page="home"] .np-future-inner {
  padding: 34px;
  background: linear-gradient(110deg, rgba(255, 77, 166, 0.3), rgba(26, 11, 20, 0.88));
}

body[data-page="home"] .np-point-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .np-point-item {
  text-align: center;
}

body[data-page="home"] .np-point-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 209, 230, 0.72);
  box-shadow:
    inset 0 0 24px rgba(255, 143, 207, 0.22),
    0 0 22px rgba(255, 77, 166, 0.3);
  background: rgba(15, 15, 18, 0.4);
}

body[data-page="home"] .np-point-item p {
  margin: 0;
}

body[data-page="home"] .np-message-visual {
  min-height: 300px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 77, 166, 0.34), transparent 34%),
    linear-gradient(170deg, rgba(18, 18, 22, 0.95), rgba(41, 13, 28, 0.92));
}

body[data-page="home"] .np-message-visual .np-script {
  position: absolute;
  left: 24px;
  top: 18px;
}

body[data-page="home"] .np-silhouette {
  position: absolute;
  right: 16%;
  bottom: 0;
  width: 210px;
  height: 260px;
  border-radius: 110px 110px 0 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.95), rgba(8, 8, 10, 0.98));
  box-shadow: 0 0 34px rgba(255, 77, 166, 0.22);
}

body[data-page="home"] .np-silhouette::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 46px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(8, 8, 10, 0.99));
}

body[data-page="home"] .np-contact-inner {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(130deg, rgba(55, 20, 38, 0.92), rgba(15, 15, 18, 0.98));
}

body[data-page="home"] .np-phone {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  letter-spacing: 0.08em;
  color: var(--np-white);
}

body[data-page="home"] .np-home-footer {
  background: rgba(9, 9, 12, 0.96);
  border-top: 1px solid rgba(255, 143, 207, 0.22);
}

body[data-page="home"] .np-footer-inner {
  display: grid;
  gap: 14px;
  padding: 8px 0 4px;
}

body[data-page="home"] .np-footer-logo {
  margin: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
}

body[data-page="home"] .np-footer-sub,
body[data-page="home"] .np-footer-copy {
  margin: 0;
  color: rgba(217, 217, 217, 0.8);
  font-size: 0.82rem;
}

body[data-page="home"] .np-footer-nav,
body[data-page="home"] .np-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

body[data-page="home"] .np-footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

body[data-page="home"] .np-footer-nav a:hover {
  color: var(--np-pink-bright);
}

body[data-page="home"] .np-footer-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 143, 207, 0.46);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 77, 166, 0.28);
}

body[data-page="home"] .np-footer-social svg {
  width: 16px;
  height: 16px;
}

body[data-page="home"] .fade-up {
  opacity: 0;
  transform: translateY(28px);
}

body[data-page="home"] .fade-up.is-visible {
  animation: fadeUp 0.82s ease forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 1200px) {
  body[data-page="home"] .np-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body[data-page="home"] {
    padding-top: 0 !important;
  }

  body[data-page="home"] #site-header {
    position: static !important;
    padding-top: 0 !important;
  }

  body[data-page="home"] > header.site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    padding-top: 0 !important;
  }

  body[data-page="home"] .menu-toggle {
    border-color: rgba(255, 143, 207, 0.42);
    background: rgba(255, 255, 255, 0.06);
  }

  body[data-page="home"] .mobile-panel {
    top: 78px;
    background: linear-gradient(180deg, rgba(18, 18, 23, 0.98), rgba(26, 11, 20, 0.98));
  }

  body[data-page="home"] .mobile-panel a {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 143, 207, 0.3);
  }

  body[data-page="home"] .np-hero-grid,
  body[data-page="home"] .np-about-grid,
  body[data-page="home"] .np-message-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body[data-page="home"] .np-hero-copy,
  body[data-page="home"] .np-future-inner,
  body[data-page="home"] .np-contact-inner {
    padding: 24px;
  }

  body[data-page="home"] .np-hero-art {
    min-height: 460px;
  }

  body[data-page="home"] .np-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .np-point-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] main section {
    padding: 40px 0;
  }

  body[data-page="home"] .np-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .np-btn {
    width: 100%;
  }

  body[data-page="home"] .np-service-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes neonGlow {
  0%,
  100% {
    filter: brightness(1);
    opacity: 0.92;
  }
  50% {
    filter: brightness(1.2);
    opacity: 1;
  }
}

@keyframes ambientShift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home: keep existing structure, reduce black ratio */
body[data-page="home"] {
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 143, 207, 0.26), transparent 26%),
    radial-gradient(circle at 94% 10%, rgba(255, 77, 166, 0.18), transparent 24%),
    linear-gradient(180deg, #fff9fc 0%, #fff6fb 54%, #fff8fc 100%);
  color: #2a1d26;
}

body[data-page="home"]::before {
  opacity: 0.45;
}

body[data-page="home"] .site-header,
body[data-page="home"] .menu-open .site-header {
  background: rgba(255, 248, 252, 0.88);
  border-bottom-color: rgba(235, 111, 166, 0.32);
}

body[data-page="home"] .brand-copy strong,
body[data-page="home"] .site-nav a,
body[data-page="home"] .menu-toggle,
body[data-page="home"] .menu-toggle-label {
  color: #241923;
}

body[data-page="home"] .brand-copy span {
  color: #8a7583;
}

body[data-page="home"] .site-nav {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(235, 111, 166, 0.24);
  box-shadow: 0 14px 36px rgba(235, 111, 166, 0.1);
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a[aria-current="page"] {
  background: rgba(235, 111, 166, 0.16);
  color: #241923;
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3 {
  color: #271b25;
}

body[data-page="home"] main section {
  padding: 42px 0;
}

body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-visual,
body[data-page="home"] .teaser-card,
body[data-page="home"] .cta-band {
  border-color: rgba(235, 111, 166, 0.2);
  box-shadow:
    0 20px 48px rgba(35, 24, 32, 0.08),
    0 0 28px rgba(235, 111, 166, 0.08);
}

body[data-page="home"] .hero-copy {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 143, 207, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 252, 0.93));
}

body[data-page="home"] .hero-visual {
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 143, 207, 0.22), transparent 28%),
    var(--surface-hero-visual);
}

body[data-page="home"] .hero-visual::before {
  content: "";
  position: absolute;
  width: min(72%, 300px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  right: 8%;
  top: 5%;
  border: 2px solid rgba(255, 143, 207, 0.45);
  box-shadow:
    0 0 16px rgba(255, 143, 207, 0.42),
    0 0 38px rgba(235, 111, 166, 0.26);
  pointer-events: none;
}

body[data-page="home"] .hero-collage-item {
  border: 1px solid rgba(235, 111, 166, 0.24);
  box-shadow:
    0 18px 38px rgba(28, 18, 25, 0.14),
    0 0 16px rgba(235, 111, 166, 0.12);
}

body[data-page="home"] .hero-badges span,
body[data-page="home"] .tags span {
  background: rgba(235, 111, 166, 0.12);
  color: #5a4351;
}

body[data-page="home"] .teaser-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 251, 0.9));
}

body[data-page="home"] .teaser-card span {
  color: #c6528f;
}

body[data-page="home"] .cta-band {
  background: linear-gradient(135deg, rgba(81, 45, 66, 0.95), rgba(235, 111, 166, 0.78));
}

@media (max-width: 920px) {
  body[data-page="home"] {
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px) !important;
  }

  body[data-page="home"] #site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    padding-top: env(safe-area-inset-top, 0px) !important;
  }

  body[data-page="home"] > header.site-header {
    position: fixed !important;
    left: 0;
    right: 0;
    top: 0;
    z-index: 110;
    padding-top: env(safe-area-inset-top, 0px) !important;
  }

  body[data-page="home"] .mobile-panel {
    background:
      radial-gradient(circle at 84% 0%, rgba(255, 143, 207, 0.24), transparent 34%),
      linear-gradient(180deg, rgba(255, 253, 255, 0.98), rgba(249, 245, 248, 0.98));
  }

  body[data-page="home"] .mobile-panel a {
    color: #221822;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(31, 31, 31, 0.08);
  }
}
