:root {
  --ink: #12212b;
  --ink-soft: #3a4a55;
  --muted: #6b7780;
  --paper: #fff9fb;
  --paper-strong: #ffffff;
  --sakura: #ff7bb8;
  --sakura-deep: #e63f8f;
  --aqua: #42d9e8;
  --mint: #8be7b0;
  --lemon: #ffe870;
  --lavender: #bda5ff;
  --line: rgba(18, 33, 43, 0.12);
  --shadow: 0 24px 70px rgba(18, 33, 43, 0.16);
  --radius: 8px;
  --max: 1160px;
  --header-h: 76px;
  --anime-bg: url("assets/anime-pink-hair-background.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 249, 251, 0.98) 0%, rgba(244, 255, 250, 0.95) 48%, rgba(255, 249, 251, 1) 100%);
  font-family: "Nunito Sans", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--ink);
  background: var(--lemon);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.petal-field {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 12px;
  height: 18px;
  opacity: 0.64;
  border-radius: 80% 10% 80% 10%;
  background: linear-gradient(135deg, #fff 0%, #ffd5e8 45%, var(--sakura) 100%);
  box-shadow: 0 5px 16px rgba(230, 63, 143, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100vw - 32px));
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(18, 33, 43, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 2px solid rgba(18, 33, 43, 0.9);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, var(--sakura) 0%, var(--sakura-deep) 50%, var(--aqua) 100%);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-menu a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--ink);
  background: rgba(255, 123, 184, 0.14);
}

.nav-cta {
  color: var(--ink);
  background: var(--lemon);
  border: 1px solid rgba(18, 33, 43, 0.12);
}

.nav-cta svg,
.button svg,
.ticker-band svg,
.service-card svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.4;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(88svh - var(--header-h));
  padding: clamp(72px, 10vw, 140px) 18px 56px;
  margin-top: calc(var(--header-h) * -1);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 249, 251, 0.98) 0%, rgba(255, 249, 251, 0.88) 36%, rgba(255, 249, 251, 0.58) 60%, rgba(18, 33, 43, 0.18) 100%),
    var(--anime-bg) center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(110deg, rgba(66, 217, 232, 0.16) 0 2px, transparent 2px 32px),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, var(--paper) 100%);
  mix-blend-mode: multiply;
}

.hero-sheen {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  width: min(420px, 42vw);
  height: 64vh;
  transform: skewX(-14deg);
  background:
    linear-gradient(90deg, transparent 0%, rgba(66, 217, 232, 0.18) 38%, rgba(255, 232, 112, 0.16) 58%, transparent 100%);
  opacity: 0.72;
}

.hero-content {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding-top: var(--header-h);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sakura-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.2rem, 8.8vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(18, 33, 43, 0.15);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sakura);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff9ccd;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.74);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 33, 43, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  max-width: 560px;
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(18, 33, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.ticker-band {
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding-left: 12px;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

.section-pad {
  padding: clamp(64px, 8vw, 112px) 18px;
}

.section-wrap {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 32px;
}

.section-heading h2,
.section-copy h2,
.stage-copy h2,
.contact-copy h2,
.purchase-panel h2,
.admin-login h2,
.dashboard-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.section-copy p,
.stage-copy p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.intro-grid,
.stage-grid,
.seo-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.image-feature,
.stage-photo {
  margin: 0;
}

.image-feature img,
.stage-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-feature {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.image-feature figcaption {
  padding: 10px 2px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.mini-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 255, 250, 0.78));
}

.card-grid,
.pricing-grid,
.work-grid {
  display: grid;
  gap: 16px;
}

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

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

.service-card,
.price-card,
.work-card,
.product-card,
.seo-panel,
.contact-form,
.faq-list details,
.purchase-panel,
.admin-login,
.orders-panel,
.order-detail,
.stats-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(18, 33, 43, 0.08);
}

.service-card {
  min-height: 240px;
  padding: 24px;
}

.service-card svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--lemon);
}

.service-card:nth-child(2n) svg {
  background: rgba(66, 217, 232, 0.22);
}

.service-card:nth-child(3n) svg {
  background: rgba(139, 231, 176, 0.34);
}

.service-card h3,
.work-card h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.work-card span,
.price-card li,
.product-card p,
.product-card li,
.seo-panel p,
.faq-list p {
  color: var(--ink-soft);
}

.stage-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(18, 33, 43, 0.96), rgba(36, 58, 68, 0.94));
  color: #fff;
  overflow: hidden;
}

.stage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(100deg, rgba(255, 123, 184, 0.18) 0 2px, transparent 2px 56px),
    repeating-linear-gradient(78deg, rgba(66, 217, 232, 0.14) 0 2px, transparent 2px 72px);
  pointer-events: none;
}

.stage-section .section-wrap {
  position: relative;
}

.stage-copy p,
.stage-copy .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.stage-copy h2 {
  color: #fff;
}

.stage-photo img {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.timeline-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  flex: 0 0 36px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--aqua);
  font-weight: 950;
  font-size: 0.8rem;
}

.work-card {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-card div {
  padding: 18px;
}

.work-card p {
  margin: 0;
  color: var(--sakura-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.work-card h3 {
  margin-top: 8px;
}

.seo {
  background:
    linear-gradient(180deg, rgba(255, 249, 251, 0.8), rgba(255, 255, 255, 0.86)),
    url("https://images.unsplash.com/photo-1630659508985-fbb56613d08b?auto=format&fit=crop&w=1800&q=72") center / cover fixed;
}

.seo-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.seo-panel div {
  min-height: 104px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.seo-panel strong {
  display: block;
  margin-bottom: 4px;
}

.price-card {
  min-height: 360px;
  padding: 24px;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 251, 0.96));
  box-shadow: 6px 6px 0 var(--ink), 0 20px 60px rgba(230, 63, 143, 0.18);
}

.price-card p {
  margin: 0 0 10px;
  color: var(--sakura-deep);
  font-weight: 950;
}

.price-card h3 {
  margin: 0;
  font-size: 2.1rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--aqua);
  border-bottom: 3px solid var(--aqua);
  transform: rotate(-45deg);
}

.commerce-hero {
  min-height: calc(74svh - var(--header-h));
  background:
    linear-gradient(90deg, rgba(255, 249, 251, 0.98) 0%, rgba(255, 249, 251, 0.9) 40%, rgba(255, 249, 251, 0.52) 100%),
    var(--anime-bg) center right / cover no-repeat;
}

.admin-hero {
  min-height: calc(58svh - var(--header-h));
  background:
    linear-gradient(90deg, rgba(255, 249, 251, 0.98) 0%, rgba(255, 249, 251, 0.88) 48%, rgba(18, 33, 43, 0.2) 100%),
    var(--anime-bg) center right / cover no-repeat;
}

.location-hero {
  min-height: calc(70svh - var(--header-h));
  background:
    linear-gradient(90deg, rgba(255, 249, 251, 0.99) 0%, rgba(255, 249, 251, 0.92) 42%, rgba(255, 249, 251, 0.58) 100%),
    var(--anime-bg) center right / cover no-repeat;
}

.location-grid .service-card a {
  color: inherit;
  text-decoration: none;
}

.location-grid .service-card a:hover,
.location-grid .service-card a:focus-visible,
.related-location-links a:hover,
.related-location-links a:focus-visible {
  color: var(--sakura-deep);
}

.city-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.package-list {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(18, 33, 43, 0.08);
}

.package-list ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.package-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.package-list span {
  color: var(--ink);
  font-weight: 900;
}

.package-list strong {
  color: var(--sakura-deep);
  white-space: nowrap;
}

.related-location-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.shop {
  background:
    linear-gradient(180deg, rgba(255, 249, 251, 0.92), rgba(238, 255, 250, 0.86));
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  gap: 14px;
  min-height: 430px;
  padding: 22px;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-top svg {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--lemon);
  color: var(--ink);
}

.product-card-top span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(66, 217, 232, 0.16);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.product-card h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.1;
}

.product-card strong {
  font-size: 1.55rem;
}

.product-card p {
  margin: 0;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 24px;
}

.product-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 7px;
  border-left: 3px solid var(--sakura-deep);
  border-bottom: 3px solid var(--sakura-deep);
  transform: rotate(-45deg);
}

.product-card .button {
  align-self: end;
  width: fit-content;
}

.purchase-panel {
  width: min(760px, 100%);
  margin: 10px auto 0;
  padding: 22px;
}

.panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.panel-close svg {
  width: 18px;
  height: 18px;
}

.selected-product {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 232, 112, 0.22);
}

.selected-product strong {
  font-size: 1.15rem;
}

.selected-product span {
  color: var(--sakura-deep);
  font-weight: 950;
}

.selected-product p,
.panel-status {
  margin: 0;
  color: var(--ink-soft);
}

.panel-status {
  min-height: 24px;
  font-weight: 900;
}

.stack-form {
  display: grid;
  gap: 14px;
}

.brief {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 251, 0.96));
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.brief-order-card {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(18, 33, 43, 0.08);
}

.brief-order-card strong {
  font-size: 1.22rem;
}

.brief-order-card span {
  color: var(--sakura-deep);
  font-weight: 950;
}

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

.admin-shell {
  background:
    linear-gradient(180deg, rgba(255, 249, 251, 0.9), rgba(238, 255, 250, 0.88));
}

.admin-login {
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding: 24px;
}

.admin-login .button {
  width: fit-content;
}

.dashboard {
  display: grid;
  gap: 18px;
}

.dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

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

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

.stats-grid article {
  min-height: 110px;
  padding: 18px;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.stats-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 16px;
  align-items: start;
}

.orders-panel,
.order-detail {
  min-height: 460px;
  padding: 18px;
}

.orders-panel h3,
.order-detail h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.orders-list {
  display: grid;
  gap: 10px;
}

.order-list-item {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.order-list-item.is-active,
.order-list-item:hover,
.order-list-item:focus-visible {
  border-color: rgba(230, 63, 143, 0.55);
  background: rgba(255, 123, 184, 0.12);
}

.order-list-item span {
  color: var(--sakura-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.order-list-item strong {
  font-size: 1rem;
}

.order-list-item small {
  color: var(--muted);
  font-weight: 800;
}

.detail-card h4 {
  margin: 12px 0 4px;
  font-size: 1.5rem;
}

.detail-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.detail-card dl {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.66fr);
  gap: 8px 14px;
  margin: 0;
}

.detail-card dt {
  color: var(--muted);
  font-weight: 950;
}

.detail-card dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-soft);
  font-weight: 800;
}

.faq {
  background: rgba(139, 231, 176, 0.14);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin-bottom: 0;
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 251, 1));
}

.contact-grid {
  align-items: start;
}

.contact-methods {
  display: grid;
  align-items: stretch;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  width: fit-content;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

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

label,
.checkbox-set {
  display: grid;
  gap: 7px;
}

label span,
.checkbox-set legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 33, 43, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(66, 217, 232, 0.35);
  border-color: var(--aqua);
}

input[type="range"] {
  accent-color: var(--sakura-deep);
  padding: 0;
}

.checkbox-set {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px;
  border: 1px solid rgba(18, 33, 43, 0.12);
  border-radius: var(--radius);
}

.checkbox-set legend {
  padding: 0 6px;
}

.checkbox-set label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.checkbox-set input {
  width: 18px;
  min-height: auto;
  aspect-ratio: 1;
  accent-color: var(--sakura-deep);
}

.form-submit {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sakura-deep);
  font-weight: 900;
}

.site-footer {
  padding: 44px 18px 48px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr;
  gap: 28px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid span,
.footer-brand small {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid span {
  display: block;
  margin: 8px 0;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-brand {
  margin-bottom: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

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

  .site-menu.is-open {
    position: fixed;
    inset: 86px 16px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .intro-grid,
  .stage-grid,
  .seo-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .pricing-grid,
  .work-grid,
  .product-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-grid,
  .brief-grid,
  .city-package-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .purchase-panel {
    position: static;
  }

  .dashboard-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    padding-inline: 10px;
  }

  .nav-shell,
  .section-wrap,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(90svh - var(--header-h));
    padding-bottom: 42px;
    background:
      linear-gradient(90deg, rgba(255, 249, 251, 0.98) 0%, rgba(255, 249, 251, 0.9) 58%, rgba(255, 249, 251, 0.64) 100%),
      var(--anime-bg) center right / cover no-repeat;
  }

  .hero-sheen {
    display: none;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.9rem);
  }

  .hero-metrics,
  .card-grid,
  .pricing-grid,
  .work-grid,
  .product-grid,
  .stats-grid,
  .field-pair,
  .checkbox-set,
  .wide-checkboxes,
  .detail-card dl {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 76px;
  }

  .section-pad {
    padding: 58px 12px;
  }

  .service-card,
  .price-card {
    min-height: auto;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 360px);
  }

  .form-submit {
    width: 100%;
  }

  .product-card .button,
  .admin-login .button,
  .dashboard-actions,
  .dashboard-actions .button {
    width: 100%;
  }

  .product-card {
    min-height: auto;
  }

  .stats-grid article {
    min-height: 88px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .petal-field {
    display: none;
  }
}
