/* ---------- Design tokens ---------- */
:root {
  --bg: #FFF7F0;
  --bg-soft: #FFEFE2;
  --surface: #FFFFFF;
  --text: #2D2A32;
  --muted: #6B6571;
  --accent: #FF6B6B;
  --accent-strong: #E84F4F;
  --accent-soft: #FFD7CC;
  --grad: linear-gradient(135deg, #FFB088 0%, #FF6B6B 100%);
  --grad-soft: linear-gradient(135deg, #FFE7D6 0%, #FFC9BD 100%);
  --shadow-sm: 0 2px 8px rgba(45, 42, 50, 0.06);
  --shadow-md: 0 10px 30px rgba(232, 79, 79, 0.12);
  --shadow-lg: 0 25px 60px rgba(45, 42, 50, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: .9rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
}

.hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(232,79,79,.25); }
.btn--ghost {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn--ghost:hover { background: var(--text); color: var(--bg); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 240, 0.78);
  border-bottom: 1px solid rgba(45, 42, 50, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
}
.nav__logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.nav__logo-text b {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .005em;
}
.nav__logo-text em {
  font-style: normal;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-top: 3px;
}
.nav__logo-mark {
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav__logo:hover .nav__logo-mark {
  transform: rotate(-6deg);
  box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow-md);
}
/* footer logo mark uses same class but smaller */
.footer__inner .nav__logo-mark { width: 34px; height: 34px; font-size: 1.1rem; box-shadow: none; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--text); position: relative; }
.nav__links a:not(.nav__cta):hover { color: var(--accent-strong); }
.nav__cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--text); color: var(--bg) !important;
  transition: background .18s ease, transform .18s ease;
}
.nav__cta:hover { background: var(--accent-strong); transform: translateY(-1px); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 100px) 0 clamp(60px, 10vw, 120px);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 { width: 480px; height: 480px; background: #FFC2AE; top: -120px; right: -120px; }
.hero__blob--2 { width: 380px; height: 380px; background: #FFB0B0; bottom: -140px; left: -80px; opacity: .35; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__text h1 { margin-bottom: 20px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 40px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 460px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 42, 50, 0.1);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent-strong);
  line-height: 1;
}
.hero__stats span { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* Photo block */
.hero__photo { display: grid; place-items: center; }
.photo { position: relative; width: min(420px, 100%); aspect-ratio: 4/5; }
.photo__frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50% 50% 30% 70% / 60% 50% 50% 40%;
  background: var(--grad);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  animation: blob 14s ease-in-out infinite;
}
.photo__placeholder {
  width: 100%; height: 100%;
  border-radius: inherit;
  background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  color: var(--muted);
  overflow: hidden;
}
.photo__placeholder svg { width: 70%; opacity: .55; }
.photo__placeholder span { font-size: .9rem; }
.photo__img {
  width: 100%; height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 20%;
}
.photo__badge {
  position: absolute;
  bottom: 4%;
  left: -8%;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.4;
}
.photo__badge span { color: var(--accent); font-size: 1.2rem; }

@keyframes blob {
  0%, 100% { border-radius: 50% 50% 30% 70% / 60% 50% 50% 40%; }
  33%      { border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%; }
  66%      { border-radius: 70% 30% 50% 50% / 40% 50% 60% 50%; }
}

/* ---------- About ---------- */
.about { padding: clamp(60px, 10vw, 120px) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.features {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.features li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.features li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.features__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.features h3 { margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; }
.features p { font-size: .92rem; margin: 0; }

/* ---------- Sections head ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .lead { margin: 0 auto; }

/* ---------- Services ---------- */
.services {
  padding: clamp(60px, 10vw, 120px) 0;
  background: linear-gradient(180deg, transparent, var(--bg-soft) 30%, transparent);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(45, 42, 50, 0.04);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card--accent {
  background: var(--grad);
  color: #fff;
  border: 0;
}
.card--accent h3, .card--accent p, .card--accent li { color: #fff; }
.card--accent .card__tag { background: rgba(255,255,255,0.2); color: #fff; }
.card__tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.card h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.2rem; }
.card p { font-size: .95rem; }
.card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.card li {
  position: relative;
  padding-left: 22px;
  font-size: .92rem;
  margin-bottom: 8px;
  color: var(--muted);
}
.card li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.card--accent li::before { color: #fff; }
.card--accent li { color: rgba(255,255,255,0.92); }

.card__price {
  margin: 18px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-strong);
}
.card--accent .card__price { color: #fff; }

/* ---------- Help / checklist ---------- */
.help {
  padding: clamp(60px, 10vw, 110px) 0;
  background: linear-gradient(180deg, transparent, var(--bg-soft) 35%, transparent);
}
.checklist {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  max-width: 920px;
  margin: 0 auto;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  font-size: .98rem;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease;
}
.checklist li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.checklist li::before {
  content: "✓";
  flex: 0 0 26px;
  width: 26px; height: 26px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .85rem; font-weight: 700;
}

/* ---------- Results / cases ---------- */
.results { padding: clamp(60px, 10vw, 120px) 0; }
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.case {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 42, 50, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.case__row { margin-bottom: 16px; }
.case__row:last-child { margin-bottom: 0; }
.case__row p { margin: 8px 0 0; font-size: .95rem; }
.case__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.case__label--was { background: rgba(45, 42, 50, 0.08); color: var(--muted); }
.case__label--now { background: var(--grad); color: #fff; }

/* ---------- Pricing ---------- */
.pricing { padding: clamp(60px, 10vw, 120px) 0; }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex; flex-direction: column;
  border: 1.5px solid rgba(45, 42, 50, 0.06);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--muted); }
.plan__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--muted);
  margin: 8px 0 4px;
}
.plan__price span {
  font-size: 2.6rem;
  color: var(--text);
  font-weight: 700;
  margin-right: 4px;
}
.plan__sub { font-size: .88rem; margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; flex-grow: 1; }
.plan li { padding: 8px 0 8px 26px; position: relative; font-size: .94rem; color: var(--text); border-bottom: 1px dashed rgba(45,42,50,0.08); }
.plan li:last-child { border-bottom: 0; }
.plan li::before { content: "✦"; position: absolute; left: 0; color: var(--accent); }
.plan .btn { margin: 0 auto; }
.plan--featured {
  background: var(--grad);
  color: #fff;
  border: 0;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.plan--featured h3, .plan--featured .plan__price, .plan--featured .plan__price span,
.plan--featured .plan__sub, .plan--featured li { color: #fff; }
.plan--featured li { border-color: rgba(255,255,255,0.18); }
.plan--featured li::before { color: #fff; }
.plan--featured .btn--primary {
  background: #fff; color: var(--accent-strong);
}
.plan--featured .btn--primary:hover { background: var(--text); color: #fff; }
.plan__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Reviews ---------- */
.reviews {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg-soft);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.quote {
  background: var(--surface);
  margin: 0;
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote__stars {
  color: #F5A623;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.quote blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.quote figcaption {
  display: flex; align-items: center; gap: 12px;
  font-style: normal;
  border-top: 1px solid rgba(45,42,50,0.08);
  padding-top: 18px;
  margin-top: auto;
}
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad);
  color: #fff; font-weight: 700;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
}
.quote figcaption strong { display: block; }
.quote figcaption em { font-size: .85rem; color: var(--muted); font-style: normal; }

/* ---------- Contact ---------- */
.contact { padding: clamp(60px, 10vw, 120px) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__list { list-style: none; padding: 0; margin: 30px 0 0; }
.contact__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
}
.contact__list span { font-size: 1.3rem; }
.contact__list a:hover { color: var(--accent-strong); }

/* ---------- Form ---------- */
.form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form__field { display: block; margin-bottom: 18px; }
.form__field > span {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form__field input, .form__field select, .form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(45, 42, 50, 0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .98rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}
.form__honey {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px; overflow: hidden;
}
.form__submit { width: 100%; margin-top: 10px; }
.form__submit[disabled] { opacity: .7; cursor: progress; }
.form__note {
  font-size: .8rem;
  color: var(--muted);
  margin: 14px 0 0;
  text-align: center;
}
.form__status {
  margin: 14px 0 0;
  text-align: center;
  font-weight: 500;
  font-size: .95rem;
  min-height: 1.4em;
}
.form__status.is-ok    { color: #16A34A; }
.form__status.is-error { color: var(--accent-strong); }

/* ---------- Footer ---------- */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: 30px 0;
  margin-top: 40px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
}
.footer__inner > div { display: flex; align-items: center; gap: 10px; }
.footer small { color: rgba(255, 247, 240, 0.65); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .features { grid-template-columns: 1fr 1fr; }
  .photo__badge { left: auto; right: 0; }
  .plan--featured { transform: none; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(45, 42, 50, 0.08);
    box-shadow: var(--shadow-sm);
  }
  .nav__links.is-open a { padding: 12px 0; border-bottom: 1px solid rgba(45,42,50,0.06); }
  .nav__links.is-open .nav__cta { margin-top: 8px; text-align: center; }
  .features { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .form { padding: 26px 22px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .photo__frame { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
