:root {
  --bg: #f4f1ea;
  --bg-warm: #ece8dd;
  --paper: #ffffff;
  --ink: #1f2a23;
  --ink-soft: #3d4a43;
  --muted: #6d766f;
  --line: rgba(31, 42, 35, 0.1);
  --line-soft: rgba(31, 42, 35, 0.05);
  --sage: #7b9a76;
  --sage-dark: #5c7a57;
  --sage-soft: #c7d5c3;
  --clay: #c99876;
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 16px;
}
.header-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 14px 10px 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px -16px rgba(31, 42, 35, 0.2);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a7c2a3, var(--sage) 70%);
  box-shadow: 0 0 0 3px rgba(123, 154, 118, 0.15);
}
.brand-name { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.nav { margin-left: auto; display: flex; gap: 22px; font-size: 14px; }
.nav a { color: var(--ink-soft); text-decoration: none; padding: 6px 0; border-radius: 999px; }
.nav a:hover { color: var(--sage-dark); }
.header-end { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav + .header-end { margin-left: 0; }

.lang-switch { display: inline-flex; background: var(--bg-warm); border-radius: 999px; padding: 3px; }
.lang-switch button {
  appearance: none; border: 0; background: transparent;
  padding: 6px 12px; font: inherit; font-size: 12px; font-weight: 700;
  color: var(--muted); border-radius: 999px; cursor: pointer;
  letter-spacing: 0.06em;
}
.lang-switch button.is-active { background: var(--sage); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  font-family: var(--display);
  letter-spacing: -0.005em;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-primary { background: var(--sage); color: #fff; box-shadow: 0 10px 24px -10px rgba(92, 122, 87, 0.5); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 14px 32px -12px rgba(92, 122, 87, 0.6); }

/* ---------- common ---------- */
.kicker {
  font-family: var(--display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage-dark);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  margin: 14px 0 0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section-head.centered { text-align: center; max-width: 760px; margin: 0 auto 48px; }

.chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- hero ---------- */
.hero { padding: 60px 0 60px; }
.hero-grid {
  display: grid; gap: 44px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 72px; padding-top: 28px; } }

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: 0.98;
  margin: 20px 0 26px;
  letter-spacing: -0.035em;
}
.hero-copy .lead { font-size: 20px; color: var(--ink); margin: 0 0 14px; }
.hero-copy p { color: var(--ink-soft); margin: 0 0 12px; }
.hero-cta { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-note {
  font-size: 14px;
  max-width: 260px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

.hero-portrait { position: relative; }
.portrait-wrap {
  border-radius: 120px 120px 28px 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sage-soft);
  box-shadow: 0 30px 60px -24px rgba(31, 42, 35, 0.3);
}
.portrait-wrap picture,
.portrait-wrap img { display: block; width: 100%; height: 100%; }
.portrait-wrap img { object-fit: cover; object-position: center 15%; }
.portrait-badge {
  position: absolute;
  right: -12px; bottom: 18px;
  background: var(--paper);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px -20px rgba(31, 42, 35, 0.35);
  text-align: center;
}
.portrait-badge .big {
  font-family: var(--display); font-weight: 800;
  font-size: 26px; color: var(--sage-dark); line-height: 1;
  letter-spacing: -0.01em;
}
.portrait-badge .sub {
  font-family: var(--display); font-weight: 700;
  font-size: 11px; color: var(--muted); letter-spacing: 0.24em;
  margin-top: 4px;
}

/* ---------- why ---------- */
.why { padding: 90px 0; }
.why-layout { display: grid; gap: 32px; margin-top: 42px; }
.why-intro {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 860px;
  margin: 0;
}
.why-sub { margin: 0 0 16px; font-weight: 600; color: var(--ink); font-size: 15px; }
.why-card-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .why-card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .why-card-grid { grid-template-columns: repeat(5, 1fr); } }
.why-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 170px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-3px); border-color: var(--sage-soft); box-shadow: 0 24px 40px -28px rgba(31, 42, 35, 0.35); }
.why-card .n {
  font-family: var(--display);
  font-size: 14px; font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: 0.08em;
}
.why-card p { margin: auto 0 0; font-size: 15px; color: var(--ink); line-height: 1.45; }

.why-closer {
  margin-top: 22px;
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .why-closer { grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; } }
.context { color: var(--muted); margin: 0; font-size: 16px; }
.closer-quote {
  background: var(--ink);
  color: #f0efe9;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
}
.closer-quote p { margin: 0; font-family: var(--display); font-size: 20px; line-height: 1.35; }
.closer-quote .emphasis { margin-top: 8px; color: var(--sage-soft); font-weight: 600; }

/* ---------- requests ---------- */
.requests { padding: 90px 0; background: var(--bg-warm); border-radius: 0; }
.req-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .req-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .req-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.req-grid article {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px 22px;
  font-size: 15px;
  color: var(--ink);
  min-height: 130px;
  display: flex; align-items: flex-start;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.req-grid article::before {
  content: "";
  width: 10px; height: 10px; margin-top: 6px; margin-right: 12px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.req-grid article:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -22px rgba(31, 42, 35, 0.35); }
.req-grid article p { margin: 0; line-height: 1.45; }

.results {
  margin-top: 60px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #f4f5f1;
}
.results-head {
  display: flex; align-items: center; gap: 20px; margin-bottom: 22px;
}
.results-head h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  margin: 0;
  letter-spacing: -0.02em;
}
.arrow-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.results ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .results ul { grid-template-columns: 1fr 1fr; gap: 12px 40px; } }
.results li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
}
.results li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 20px; height: 2px;
  background: #f4f5f1;
}

/* ---------- formats ---------- */
.formats { padding: 100px 0; }
.format-block { margin-bottom: 32px; }
.format-block-head { margin-bottom: 20px; }
.format-block-head h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.format-block-head p { margin: 0; color: var(--muted); font-size: 15px; }

.plan-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--line-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -28px rgba(31, 42, 35, 0.3); }
.plan.featured {
  background: linear-gradient(180deg, #ffffff 0%, #eff5ee 100%);
  border-color: var(--sage-soft);
  box-shadow: 0 20px 44px -24px rgba(123, 154, 118, 0.45);
}
.plan-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.plan h4 {
  font-family: var(--display);
  font-weight: 700; font-size: 22px;
  margin: 0; letter-spacing: -0.015em;
}
.plan .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--sage-dark);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.plan p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

.format-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 800px) { .format-row { grid-template-columns: 1fr 1fr; } }
.format-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px 30px;
  border: 1px solid var(--line-soft);
}
.format-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 6px; }
.format-card h3 { font-family: var(--display); font-weight: 700; font-size: 24px; margin: 0; letter-spacing: -0.02em; }
.format-card .price { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--clay); letter-spacing: -0.01em; }
.format-card .sub { color: var(--sage-dark); font-weight: 600; font-size: 13px; margin: 0 0 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.format-card p { color: var(--ink-soft); margin: 0; }

.format-start {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--ink);
  color: #f0efe9;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.format-start p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.format-start .btn-primary { background: var(--sage-soft); color: var(--sage-dark); }
.format-start .btn-primary:hover { background: #fff; color: var(--sage-dark); }

/* ---------- about ---------- */
.about { padding: 100px 0; background: var(--bg-warm); }
.about-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--sage-soft);
  box-shadow: 0 30px 60px -30px rgba(31, 42, 35, 0.35);
}
.about-portrait picture,
.about-portrait img { display: block; width: 100%; height: 100%; }
.about-portrait img { object-fit: cover; object-position: center 30%; }
.portrait-chip {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600; font-size: 13px;
  color: var(--ink);
}
.portrait-chip span { color: var(--sage-dark); font-weight: 800; }

.about-body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 14px 0 20px;
  letter-spacing: -0.02em;
}
.about-body p { margin: 0 0 14px; color: var(--ink-soft); }
.know-list { list-style: none; padding: 0; margin: 8px 0 18px; display: grid; gap: 10px; }
.know-list li {
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line-soft);
}

.cert-block { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--line); }
.cert-grid {
  margin-top: 24px;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
.cert-card {
  background: var(--paper);
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 16px;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .2s ease, background .2s ease;
}
.cert-card:hover,
.cert-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--sage-soft);
  box-shadow: 0 18px 36px -22px rgba(31, 42, 35, 0.28);
  outline: none;
}
.cert-card:focus-visible { box-shadow: 0 0 0 3px rgba(123, 154, 118, 0.35); }
.cert-card:active { transform: translateY(0); }
.cert-card .badge {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
}
.cert-card p { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.35; flex: 1; }
.cert-card-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease, color .18s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d766f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='M13 6l6 6-6 6'/></svg>");
}
.cert-card:hover .cert-card-icon,
.cert-card:focus-visible .cert-card-icon {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- certificate modal ---------- */
body.cert-modal-open { overflow: hidden; }
.cert-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .18s ease;
}
.cert-modal.is-visible { opacity: 1; }
.cert-modal[hidden] { display: none; }
.cert-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 28, 23, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cert-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  height: min(92vh, 100%);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -28px rgba(0, 0, 0, 0.55);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(8px) scale(0.985);
  transition: transform .22s ease;
}
.cert-modal.is-visible .cert-modal-panel { transform: translateY(0) scale(1); }
.cert-modal-head {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.cert-modal-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  flex: 1;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.cert-modal-controls { display: flex; align-items: center; gap: 10px; }
.cert-modal-counter {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  min-width: 38px;
  text-align: center;
}
.cert-modal-open {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--sage-soft);
  background: transparent;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}
.cert-modal-open:hover { background: var(--sage-soft); color: var(--sage-dark); }
.cert-modal-close {
  appearance: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.cert-modal-close:hover { background: var(--bg-warm); color: var(--ink); }
.cert-modal-body {
  flex: 1;
  background: var(--bg-warm);
  position: relative;
  overflow: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.cert-modal-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.4);
  background: var(--paper);
}
.cert-modal-nav {
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.35);
  transition: background .18s ease, transform .18s ease;
}
.cert-modal-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.cert-modal-prev { left: 12px; }
.cert-modal-next { right: 12px; }
.cert-modal-nav[hidden] { display: none; }

@media (max-width: 640px) {
  .cert-modal { padding: 0; }
  .cert-modal-panel { border-radius: 0; height: 100%; width: 100%; }
  .cert-modal-head { padding: 12px 14px; }
  .cert-modal-title { font-size: 14px; }
  .cert-modal-open { padding: 6px 10px; font-size: 12px; }
  .cert-modal-nav { width: 38px; height: 38px; }
  .cert-modal-prev { left: 8px; }
  .cert-modal-next { right: 8px; }
}

/* ---------- testimonials ---------- */
.testimonials { padding: 100px 0; }
.tst-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .tst-grid { grid-template-columns: 1fr 1fr; } }
.tst {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 0;
  position: relative;
}
.tst::before {
  content: "";
  position: absolute; top: 22px; left: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M8 10c-1.66 0-3 1.34-3 3v4h4v-4H7c0-.55.45-1 1-1V10zm8 0c-1.66 0-3 1.34-3 3v4h4v-4h-2c0-.55.45-1 1-1V10z' fill='%235c7a57'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}
.tst blockquote {
  margin: 44px 0 16px;
  font-size: 16px; line-height: 1.6;
  color: var(--ink);
}
.tst figcaption {
  font-family: var(--display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.tst-wide { grid-column: 1 / -1; }

/* ---------- final ---------- */
.final { padding: 120px 0; text-align: center; background: radial-gradient(circle at 50% 0%, #eaf0e7 0%, var(--bg-warm) 70%); }
.final-inner { max-width: 780px; margin: 0 auto; }
.final h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.final p { color: var(--ink-soft); font-size: 18px; margin: 0 0 34px; }

/* ---------- footer ---------- */
.site-footer { padding: 28px 0; background: var(--ink); color: rgba(244, 241, 234, 0.75); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.variants-link { color: var(--sage-soft); text-decoration: none; }
.variants-link:hover { color: #fff; }

/* ---------- responsive nav ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .header-inner { padding: 8px 10px 8px 16px; gap: 10px; }
  .hero { padding: 28px 0 40px; }
  .why, .requests, .formats, .about, .testimonials, .final { padding: 64px 0; }
  .results, .format-start { padding: 26px; }
  .results-head h3 { font-size: 26px; }
  .closer-quote { padding: 24px; }
}
