/* GirlItem — soft beauty (Round 1), production mobile-first */
:root {
  --blush: #f4d6d8;
  --blush-deep: #e8b4b8;
  --cream: #faf6f2;
  --cream-warm: #f5ebe3;
  --ink: #2c2426;
  --ink-soft: #5c5154;
  --rose: #c47880;
  --rose-dark: #a85d66;
  --white: #ffffff;
  --border: #ead9d4;
  --shadow: 0 8px 28px rgba(44, 36, 38, 0.08);
  --shadow-sm: 0 2px 10px rgba(44, 36, 38, 0.05);
  --radius: 14px;
  --font: "Sarabun", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 960px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; }
a { color: var(--rose-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3 { line-height: 1.25; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.75rem, 4vw, 2.35rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.7rem); margin: 0 0 0.6rem; }
h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.lead { font-size: 1.1rem; color: var(--ink-soft); }

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.site-header {
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-deep), var(--rose));
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.08);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.55;
}
.logo-word {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.1;
}
.logo-word strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-word small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--rose-dark);
  background: rgba(244, 214, 216, 0.45);
}
.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 0.4rem 0.85rem !important;
}
.nav-cta:hover {
  background: var(--rose-dark) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
}

.hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, var(--blush) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 90%, var(--cream-warm) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.hero-visual {
  aspect-ratio: 4/3;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(160deg, var(--blush) 0%, var(--cream-warm) 45%, var(--blush-deep) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb--1 {
  width: 48%;
  height: 48%;
  background: rgba(255,255,255,0.5);
  top: 14%;
  left: 14%;
}
.hero-orb--2 {
  width: 28%;
  height: 28%;
  background: rgba(196, 120, 128, 0.28);
  bottom: 16%;
  right: 14%;
}
.hero-brand {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}
.hero-brand .wordmark {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0;
}
.hero-brand .tagline {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.6rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 120, 128, 0.35);
}
.btn-primary:hover { background: var(--rose-dark); color: var(--white); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--rose-dark); }
.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  min-height: 40px;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--rose-dark);
  padding: 0.25rem 0;
}
.btn-text::after { content: "→"; }
.btn-text:hover { color: var(--ink); }

.section { padding: 2.25rem 0; }
.section-alt { background: rgba(245, 235, 227, 0.45); }
.section-tight { padding: 1.5rem 0 2.5rem; }
.section-head { margin-bottom: 1.25rem; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.4rem;
}
.page-intro {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(244, 214, 216, 0.45) 0%, transparent 55%);
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-pad { display: flex; flex-direction: column; flex: 1; }
.card-media {
  height: 120px;
  border-radius: 10px;
  margin-bottom: 0.9rem;
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.card-media span {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.72);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.card-media--a { background: linear-gradient(145deg, #f8e4e6, #e8b4b8); }
.card-media--b { background: linear-gradient(145deg, #f5ebe3, #f0d0c8); }
.card-media--c { background: linear-gradient(145deg, #efe6df, #e8c4b8); }
.card-media--d { background: linear-gradient(145deg, #f4d6d8, #edd4c8); }
.card-media--e { background: linear-gradient(145deg, #faf0ec, #e8b8c0); }
.card-media--f { background: linear-gradient(145deg, #f0e4e0, #dcb0b4); }
.card h3 a { text-decoration: none; color: var(--ink); }
.card h3 a:hover { color: var(--rose-dark); }
.card .cta-row { margin-top: auto; padding-top: 0.75rem; }
.meta { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-dark);
  font-weight: 600;
  margin-right: 0.35rem;
}
.price {
  font-weight: 700;
  color: var(--ink);
  margin: 0.5rem 0 0.15rem;
  font-size: 1rem;
}
.price-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
}
.why-buy {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 0.5rem;
  flex: 1;
}
.muted { color: var(--ink-soft); font-size: 0.9rem; }
.note-box {
  background: var(--cream-warm);
  border-left: 3px solid var(--blush-deep);
  padding: 0.9rem 1rem;
  border-radius: 0 10px 10px 0;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}
.prose { max-width: 42rem; }
.prose h2 { margin-top: 1.75rem; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.cta-banner {
  background: linear-gradient(135deg, rgba(244, 214, 216, 0.65), rgba(245, 235, 227, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  margin: 1.75rem 0;
  text-align: center;
}
.cta-banner p { margin-bottom: 0.85rem; }
.is-soon { opacity: 0.78; }
.is-soon:hover { transform: none; box-shadow: var(--shadow-sm); }

/* How it works */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.step h3 { margin-top: 0; }

.video-slot {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 40%, rgba(244, 214, 216, 0.6), transparent 50%),
    var(--cream-warm);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 1.25rem 0;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream-warm);
  padding: 2rem 0 2.5rem;
  font-size: 0.9rem;
}
.footer-simple { padding: 1.5rem 0; }
.footer-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-grid a { text-decoration: none; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--rose-dark); }
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.footer-simple .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.disclosure {
  font-size: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1rem 0 1.5rem;
}
.trust-row {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.trust-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.form-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.form-placeholder label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.form-placeholder input,
.form-placeholder textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  background: var(--cream);
}
.form-placeholder button { pointer-events: none; opacity: 0.85; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.breadcrumb a { text-decoration: none; }

/* Sticky mobile commerce bar */
.sticky-shop {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(250, 246, 242, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(44, 36, 38, 0.08);
}
.sticky-shop .btn { width: 100%; }
@media (max-width: 720px) {
  .sticky-shop { display: block; }
  body.has-sticky-shop { padding-bottom: 4.5rem; }
}

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.75rem;
    gap: 0.25rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.65rem 0.85rem; }
  .header-inner { flex-wrap: wrap; }
  .cta-row .btn { flex: 1 1 auto; min-width: calc(50% - 0.4rem); }
}

.reveal { opacity: 1; }
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
.js .reveal-delay-1 { transition-delay: 0.08s; }
.js .reveal-delay-2 { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
