/* ── Reset & base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #fdf6ee;
  --warm:    #fff8f0;
  --amber:   #f5a623;
  --amber-d: #d4891a;
  --plum:    #5b3a8e;
  --plum-l:  #7a54b0;
  --text:    #2d1f0e;
  --muted:   #7a6655;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── Utility ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--plum);
  text-align: center;
  margin-bottom: 2rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber);
  color: #fff;
}
.btn--primary:hover { background: var(--amber-d); }

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #2b1354 0%, #5b3a8e 100%);
  color: #fff;
  padding: 60px 0 48px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.hero__text { text-align: center; }

.hero__title {
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: .9;
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero__img-wrap {
  width: 100%;
  max-width: 380px;
}

.hero__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

@media (min-width: 700px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .hero__text  { text-align: left; flex: 1; }
  .hero__sub   { margin-left: 0; }
  .hero__img-wrap { flex: 0 0 340px; max-width: 340px; }
}

/* ── Benefits ────────────────────────────────────────────────────────── */
.benefits {
  background: var(--warm);
  padding: 56px 0;
}

.benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.benefit strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--plum);
}

.benefit p { color: var(--muted); font-size: .95rem; }

@media (min-width: 700px) {
  .benefits__list { flex-direction: row; }
  .benefit        { flex-direction: column; text-align: center; align-items: center; flex: 1; }
}

/* ── Gallery ─────────────────────────────────────────────────────────── */
.gallery {
  padding: 56px 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s;
}

.gallery__grid img:hover { transform: scale(1.02); }

.gallery__grid img:last-child { object-position: top; }

@media (min-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .gallery__grid img { aspect-ratio: 2/3; }
}

/* ── How it works ────────────────────────────────────────────────────── */
.how {
  background: var(--warm);
  padding: 56px 0;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step__body strong {
  display: block;
  font-size: 1.05rem;
  color: var(--plum);
  margin-bottom: 4px;
}

.step__body p { color: var(--muted); font-size: .95rem; }

@media (min-width: 700px) {
  .steps { flex-direction: row; }
  .step  { flex-direction: column; align-items: center; text-align: center; flex: 1; }
}

/* ── Video ───────────────────────────────────────────────────────────── */
.video-section {
  padding: 56px 0;
  background: var(--cream);
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  aspect-ratio: 16/9;
  background: #e8dff5;
  border-radius: var(--radius);
  border: 2px dashed var(--plum-l);
  color: var(--plum);
}

.video-placeholder__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: 1.6rem;
  padding-left: 4px;
}

.video-placeholder p {
  font-weight: 600;
  color: var(--plum-l);
}

/* ── Stories ─────────────────────────────────────────────────────────── */
.stories {
  padding: 56px 0;
  background: var(--warm);
}

.stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .stories__grid { grid-template-columns: repeat(3, 1fr); }
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--text);
}

.story-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.story-card__emoji {
  font-size: 2.2rem;
  line-height: 1;
}

.story-card strong {
  font-size: 1.05rem;
  color: var(--plum);
}

.story-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ── What's included ─────────────────────────────────────────────────── */
.included {
  padding: 56px 0;
  background: var(--cream);
}

.included__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.included__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.included__list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.included__price {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--plum);
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq {
  background: var(--warm);
  padding: 56px 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin-inline: auto;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--plum);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--plum-l);
  transition: transform .2s;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: .95rem;
}

/* ── CTA block ───────────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(160deg, #2b1354 0%, #5b3a8e 100%);
  padding: 64px 0;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta__text {
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  max-width: 500px;
}

/* ── Order form section ──────────────────────────────────────────────── */
.order-section {
  padding: 64px 0;
  background: linear-gradient(160deg, #2b1354 0%, #5b3a8e 100%);
}

.order-section__title {
  color: #fff;
}

.order-form {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 560px;
  margin-inline: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 599px) {
  .order-form { padding: 24px 18px; }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-weight: 700;
  font-size: .95rem;
  color: var(--plum);
}

.req { color: var(--amber); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5daf5;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #faf7ff;
  transition: border-color .15s;
  outline: none;
}

.form-input:focus { border-color: var(--plum-l); background: #fff; }
.form-input--short { max-width: 120px; }

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-group--col { flex-direction: column; gap: 8px; }

.radio-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 2px solid #e5daf5;
  border-radius: 50px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  background: #faf7ff;
  transition: border-color .15s, color .15s, background .15s;
  user-select: none;
}

.radio-btn input[type="radio"] { display: none; }

.radio-btn:has(input:checked) {
  border-color: var(--plum);
  background: #f0eaff;
  color: var(--plum);
}

.radio-group--col .radio-btn { border-radius: 12px; }

/* File upload */
.file-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px;
  border: 2px dashed #c4aee8;
  border-radius: 16px;
  background: #faf7ff;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
}

.file-upload:hover { border-color: var(--plum-l); background: #f3edff; }

.file-upload input[type="file"] { display: none; }

.file-upload__icon { font-size: 2rem; line-height: 1; }

.file-upload__text {
  font-weight: 700;
  font-size: .95rem;
  color: var(--plum);
}

.file-upload__hint {
  font-size: .8rem;
  color: var(--muted);
}

.order-form__submit {
  width: 100%;
  margin-top: 4px;
  font-size: 1.15rem;
  padding: 18px;
}

.custom-story-wrap {
  display: none;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
  padding: 16px;
  background: #f3edff;
  border-radius: 12px;
  border: 1.5px solid #c4aee8;
}

.custom-story-wrap--visible {
  display: flex;
}

.field-error {
  min-height: 1.2em;
  font-size: .85rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 4px;
}

.form-server-error {
  background: #fff0ef;
  border: 1.5px solid #c0392b;
  border-radius: 12px;
  color: #c0392b;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 18px;
  margin-bottom: 8px;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  background: #1a0d36;
  color: rgba(255,255,255,.6);
  padding: 28px 0;
  font-size: .85rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__links a:hover { color: #fff; }
