/* Quick Results — landing */
:root {
  --bg: #f7f1ec;
  --bg-2: #fbf7f3;
  --paper: #fffdf9;
  --paper-warm: #f8efe6;
  --ink: #161412;
  --ink-soft: #4f4a44;
  --olive: #434f3f;
  --olive-deep: #313c2e;
  --olive-hover: #354034;
  --sage: #5e6458;
  --line: rgba(67, 79, 63, 0.12);
  --gold: #b0895a;
  --gold-soft: #c9b49a;
  --shadow: 0 18px 40px rgba(67, 55, 40, 0.08);
  --radius: 22px;
  --radius-s: 16px;
  --header: 84px;
  --container: 941px;
  --page-pad: 48px;
  --font-serif: "Playfair Display", "Times New Roman", Times, serif;
  --font-sans: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Mrs Saint Delafield", "Segoe Script", cursive;
  --ease: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + env(safe-area-inset-top, 0px) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.nav-locked,
body.modal-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
summary {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--olive);
  color: #fff;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100%, var(--container));
  padding-inline: 20px;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .container {
    padding-inline: var(--page-pad);
  }
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.note {
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.12;
  color: var(--olive);
  font-weight: 400;
}

.section {
  position: relative;
  padding: 56px 0;
  scroll-margin-top: calc(var(--header) + env(safe-area-inset-top, 0px) + 12px);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 28px;
  margin-bottom: 28px;
  align-items: start;
}

.section-head .eyebrow {
  grid-column: 1;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 10px;
  max-width: 16ch;
  grid-column: 1;
}

.section-head h2 em,
.section-head h2 .accent {
  font-style: normal;
  color: var(--olive);
}

.lead {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 1.05rem;
  color: var(--ink);
  grid-column: 1;
}

.section-head .note {
  max-width: 12ch;
  text-align: left;
  transform: rotate(-4deg);
  margin: 10px 0 6px;
}

.section-head .note::after {
  content: "";
  display: block;
  width: 42px;
  height: 28px;
  margin: 4px 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 28' fill='none' stroke='%23434f3f' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M2 8c12 2 22-6 38 4'/%3E%3Cpath d='M30 4c4 8 6 14 2 22'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

@media (max-width: 799px) {
  .section-head .eyebrow {
    justify-self: center;
    text-align: center;
    max-width: 28ch;
  }

  .section-head .note {
    justify-self: center;
    text-align: center;
    max-width: 14ch;
    margin: 28px auto 14px;
    transform: none;
  }

  .section-head .note::after {
    margin: 6px auto 0;
  }
}

@media (min-width: 800px) {
  .section-head {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .section-head .note {
    grid-column: 2;
    grid-row: 1 / span 4;
    justify-self: end;
    align-self: start;
    margin: 0;
    text-align: right;
    transform: rotate(-6deg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--olive);
  color: #f7f3ee;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: var(--olive-hover);
  box-shadow: 0 10px 24px rgba(49, 60, 46, 0.18);
}

.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: #f7f3ee;
  border: 1px solid rgba(255, 255, 255, 0.35);
  min-height: 46px;
  padding: 10px 20px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-block {
  width: 100%;
  max-width: 420px;
}

.btn-gold {
  width: 100%;
  background: linear-gradient(180deg, #c9a574 0%, #b0895a 100%);
  color: #fffdf8;
  box-shadow: 0 10px 22px rgba(176, 137, 90, 0.28);
}

.btn-gold:hover {
  background: linear-gradient(180deg, #d1b082 0%, #a57c4e 100%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: auto;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(247, 241, 236, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 241, 236, 0.96);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* Override .container side pad — right flush to edge */
  padding-inline: 16px 10px;
}

@media (min-width: 720px) {
  .header-inner {
    padding-inline: 24px 12px;
  }
}

.logo {
  order: 1;
}

.header-side {
  order: 3;
  margin-right: 0;
  margin-left: auto;
}

.nav {
  order: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  color: var(--olive);
  fill: none;
  stroke: currentColor;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text b {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--olive);
}

.logo-text span {
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  line-height: 1.25;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-team {
  display: block;
  text-align: right;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  line-height: 1.3;
  color: var(--ink-soft);
}

@media (max-width: 419px) {
  .header-team {
    display: none;
  }
}

.nav-toggle {
  width: auto;
  height: auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--olive);
}

/* Burger matches height of two-line «Команда Ольги Семенихиной» */
.nav-toggle .icon {
  width: 2.6em;
  height: 2.6em;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  stroke-width: 1.7;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 20, 18, 0.28);
  z-index: 40;
}

.nav-overlay.is-on {
  display: block;
}

.nav {
  position: fixed;
  top: calc(var(--header) + env(safe-area-inset-top, 0px) + 8px);
  right: 12px;
  left: auto;
  width: min(calc(100% - 24px), 420px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  z-index: 49;
}

.nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav ul {
  display: grid;
  gap: 4px;
}

.nav ul a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
}

.nav ul a:hover,
.nav ul a:focus-visible {
  background: var(--bg);
  color: var(--ink);
}

.nav .btn {
  margin-top: 10px;
  width: 100%;
}

.hero {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: 8px 0 0;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 38% auto;
  width: min(46%, 440px);
  background:
    radial-gradient(ellipse at 80% 8%, rgba(255, 255, 255, 0.92), transparent 58%),
    radial-gradient(ellipse at 100% 42%, rgba(232, 220, 205, 0.4), transparent 62%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.hero-title-wrap {
  position: relative;
}

@media (min-width: 560px) {
  .hero-title-wrap {
    padding-right: 168px;
  }
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.55rem, 6.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.hero h1 .price {
  display: block;
  margin-top: 0.04em;
  font-size: 1.46em;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--olive);
}

.hero-note {
  display: none;
}

.hero-lead {
  margin-top: 18px;
  max-width: 34ch;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0 26px;
  padding: 4px 0;
}

.hero-facts li {
  text-align: center;
  padding: 0 8px;
}

.hero-facts li:not(:last-child) {
  border-right: 1px solid var(--line);
}

.hero-facts .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--olive);
  stroke-width: 1.3;
}

.hero-facts strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-facts span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.btn-hero {
  display: flex;
  width: fit-content;
  max-width: calc(100% - 40px);
  min-height: 52px;
  margin: 0 0 8px;
  padding: 12px 28px;
  font-size: 0.98rem;
  /* Center on baked-in «Узнать больше» (~43.8% of hero artboard), not page mid */
  position: relative;
  left: 43.8%;
  transform: translateX(-50%);
}

.hero-media {
  position: relative;
  margin-top: -4px;
}

.hero-visual {
  display: block;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

@media (min-width: 560px) {
  .hero-note {
    display: block;
    position: absolute;
    right: 8px;
    top: 42%;
    max-width: 11ch;
    text-align: right;
    font-size: clamp(1.35rem, 2.4vw, 1.65rem);
    line-height: 1.05;
    transform: rotate(-8deg);
  }

  .hero-note::after {
    content: "";
    display: block;
    width: 42px;
    height: 28px;
    margin: 2px 0 0 auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 28' fill='none' stroke='%23434f3f' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M2 8c12 2 22-6 38 4'/%3E%3Cpath d='M30 4c4 8 6 14 2 22'/%3E%3C/svg%3E")
      no-repeat center / contain;
  }
}

.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

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

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.trust-list .icon {
  width: 32px;
  height: 32px;
  color: var(--olive);
  stroke-width: 1.4;
}

@media (min-width: 768px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .trust-list li:not(:last-child) {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.card p,
.card li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--olive);
}

.card-icon .icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.4;
}

.requests-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .requests-grid {
    grid-template-columns: 1fr 1fr;
  }

  .requests-grid .card:last-child {
    grid-column: 1 / -1;
  }
}

.requests-bottom {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  align-items: end;
}

.requests-photo {
  min-height: 280px;
  border-radius: 0;
  overflow: hidden;
}

.requests-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 18% 60%;
}

.requests-aside {
  padding: 8px 8px 0;
}

.requests-aside p {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.35;
  max-width: 24ch;
}

.requests-aside p + p {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-soft);
}

.requests-aside .btn {
  margin-top: 22px;
}

@media (min-width: 900px) {
  .requests-bottom {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
  }

  .requests-aside {
    border-left: 1px solid var(--line);
    padding: 24px 8px 24px 36px;
  }
}

.method-layout {
  display: grid;
  gap: 32px;
}

.steps {
  position: relative;
  display: grid;
  gap: 22px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ece7e0;
  color: var(--olive);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
}

.feature-row h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.step h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.method-portrait {
  position: relative;
}

.method-portrait img {
  width: 100%;
  height: min(52vw, 420px);
  min-height: 280px;
  object-fit: cover;
  object-position: 46% 18%;
  border-radius: 24px 24px 0 0;
}

.olga-card {
  margin-top: -48px;
  position: relative;
  background: #f3ece4;
  border-radius: 18px;
  padding: 22px 22px 18px;
}

.olga-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.olga-card .role {
  color: var(--olive);
  font-weight: 600;
  font-size: 0.92rem;
}

.olga-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.signature {
  margin-top: 12px;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--olive);
}

.method-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 28px;
  padding: 22px;
  background: #efe8df;
  border-radius: var(--radius);
}

.method-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.4;
}

.method-quote p + p {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.method-benefits {
  display: grid;
  gap: 18px;
  margin: 28px 0 28px;
}

.method-benefits li {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.method-benefits .icon {
  margin: 0 auto 8px;
  color: var(--olive);
}

.method-benefits strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.method .btn {
  display: flex;
  margin: 0 auto;
}

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

  .method-benefits li:not(:last-child) {
    border-right: 1px solid var(--line);
    padding-right: 18px;
  }
}

@media (min-width: 960px) {
  .method-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 28px;
  }

  .method-portrait img {
    height: 380px;
  }
}

.pricing-grid {
  display: grid;
  gap: 12px;
}

.pricing-points {
  display: grid;
  gap: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-row .bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe8df;
  color: var(--olive);
}

.sage-card {
  background: var(--sage);
  color: #f6f3ee;
  border: 0;
  padding: 28px 24px;
}

.card.sage-card h3,
.card.sage-card p {
  color: #f6f3ee;
}

.sage-card .icon {
  color: #f6f3ee;
  stroke: #f6f3ee;
}

.sage-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: #fff;
  margin: 12px 0 14px;
}

.sage-card p {
  color: rgba(255, 255, 255, 0.92);
}

.sage-card .finish {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
}

.pricing-banner {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.quote-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.quote-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.pricing-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 18px;
}

.pricing .btn {
  display: flex;
  margin: 28px auto 10px;
}

.price-note {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .pricing-banner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
  }
}

.howto-layout {
  display: grid;
  gap: 28px;
}

.howto-steps {
  gap: 14px;
}

.howto-steps::before {
  left: 23px;
  top: 32px;
  bottom: 32px;
  background: rgba(67, 79, 63, 0.18);
}

.howto-steps .step {
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.howto-steps .step-num {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4e7dc;
  color: var(--olive-deep);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
  transform: translateY(-1px);
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: #fffcf8;
  border: 1px solid rgba(201, 180, 154, 0.22);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(67, 55, 40, 0.06);
}

.step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(67, 79, 63, 0.35);
  border-radius: 50%;
  color: var(--olive);
  flex-shrink: 0;
}

.step-icon .icon {
  width: 22px;
  height: 22px;
}

.howto-steps .step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.howto-steps .step p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.howto-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #efe6db;
  min-height: 280px;
  align-self: stretch;
}

.howto-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.howto-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 28px 0 22px;
  padding: 22px 24px;
  background: #e6eadf;
  border-radius: 28px;
  color: var(--olive-deep);
}

.howto-quote .icon {
  width: 28px;
  height: 28px;
  color: var(--olive-deep);
  padding-right: 18px;
  border-right: 1px solid rgba(49, 60, 46, 0.28);
  box-sizing: content-box;
  flex-shrink: 0;
}

.howto-quote h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--olive-deep);
}

.howto-quote p {
  color: rgba(49, 60, 46, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 46ch;
}

.howto-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.howto-perks li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.howto-perks strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.howto-perks span {
  display: block;
  line-height: 1.4;
}

.howto-perks .icon {
  width: 28px;
  height: 28px;
  color: var(--olive);
  margin-top: 0;
  flex-shrink: 0;
}

.btn-howto,
.howto .btn {
  display: flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 0 auto;
  padding-inline: 28px;
}

@media (min-width: 768px) {
  .howto-perks {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .howto-perks li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 4px 18px;
    text-align: left;
  }

  .howto-perks li:first-child {
    padding-left: 0;
  }

  .howto-perks li:last-child {
    padding-right: 0;
  }

  .howto-perks li:not(:last-child) {
    border-right: 1px solid var(--line);
  }
}

@media (min-width: 960px) {
  .howto {
    overflow: hidden;
  }

  .howto > .container {
    position: relative;
  }

  .howto-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
    align-items: stretch;
    gap: 20px;
  }

  .howto-visual {
    margin-right: calc(-1 * var(--page-pad));
    min-height: 100%;
    height: auto;
    border-radius: 0;
    align-self: stretch;
    display: flex;
  }

  .howto-visual img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center top;
  }

  .howto-steps .step-card {
    padding: 18px 20px 18px 16px;
  }
}

.team {
  overflow: visible;
  background: #f4ebe3;
}

/* Cropped side strips removed — they read as unclear edge artifacts */
.team-decor {
  display: none;
}

.team .container {
  position: relative;
  z-index: 1;
}

.team-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
  justify-items: center;
}

.team-brand {
  text-align: center;
}

.team-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-qr {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 11vw, 5.8rem);
  line-height: 0.92;
  color: var(--gold);
  font-weight: 500;
  padding-bottom: 0.06em;
}

.team-title {
  text-align: center;
}

.team-intro h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  color: var(--gold);
  line-height: 1.15;
}

.team-tags {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.team-aside {
  text-align: center;
}

.team-muted {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  line-height: 1.65;
}

.team-heart {
  width: 20px;
  height: 20px;
  margin: 10px auto 0;
  color: var(--gold);
  stroke-width: 1.4;
}

.team-grid {
  display: grid;
  gap: 16px;
}

.psych-card {
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid rgba(201, 180, 154, 0.28);
  border-radius: 28px;
  padding: 22px 18px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.psych-photo {
  width: 164px;
  height: 164px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
}

.psych-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.08);
}

.psych-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.psych-card .role {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.psych-slots {
  display: grid;
  gap: 8px;
}

.psych-slots a,
.psych-slots button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f0e4d4;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease);
}

.psych-slots a:hover,
.psych-slots button:hover {
  background: #e7d7c2;
}

.psych-slots .icon {
  width: 16px;
  height: 16px;
  color: var(--olive);
}

.team-last {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
  justify-items: center;
}

.team-last .psych-card {
  width: 100%;
  max-width: 360px;
}

.team-side {
  text-align: center;
}

.team-side .note {
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.12;
  max-width: 11ch;
  padding: 0.2em 0.4em;
}

@media (min-width: 700px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Full-width: QR | title | muted flush right */
  .team-intro {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
    justify-items: stretch;
    align-items: center;
    text-align: left;
    gap: 0 32px;
    width: 100%;
  }

  .team-brand {
    text-align: left;
    justify-self: start;
  }

  .team-title {
    text-align: left;
    border-left: 1px solid rgba(176, 137, 90, 0.3);
    padding-left: 32px;
    max-width: none;
    justify-self: start;
  }

  .team-intro h2 {
    border-left: 0;
    padding-left: 0;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    line-height: 1.15;
    white-space: normal;
    color: var(--gold);
  }

  .team-tags {
    margin-top: 10px;
    text-align: left;
    font-size: 0.84rem;
  }

  .team-aside {
    text-align: right;
    justify-self: end;
  }

  .team-muted {
    font-size: 0.84rem;
  }

  .team-heart {
    margin: 10px 0 0 auto;
  }

  /* Same 3 columns as cards above — side labels centered in empty slots */
  .team-last {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: stretch;
  }

  .team-side {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    text-align: center;
    width: 100%;
    max-width: none;
    padding: 16px 12px;
    overflow: visible;
  }

  .team-side .note {
    transform: rotate(-8deg);
    transform-origin: center center;
    margin: 0 auto;
    max-width: 11ch;
    padding: 0.15em 0.35em;
    line-height: 1.12;
  }

  .team-last .psych-card {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .team-last > .team-muted {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    text-align: center;
    width: 100%;
    padding: 16px 12px;
  }
}

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

  .team-last {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .team-side {
    justify-self: center;
    padding: 20px 16px;
  }

  .team-last .psych-card {
    grid-column: 2;
    grid-row: 1;
  }

  .team-last > .team-muted {
    justify-self: center;
    text-align: center;
    padding: 20px 16px;
  }
}

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

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
}

.faq-trigger {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0;
  text-align: left;
  font-weight: 700;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.faq-item .bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe8df;
  color: var(--olive);
}

.faq-item .chev {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .chev {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item .faq-body {
  margin: 0;
  padding: 0 0 18px 54px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.35s ease 0.05s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-body {
  opacity: 1;
  transform: none;
}

.care {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 24px;
  background: var(--olive-deep);
  color: #f4efe8;
  border-radius: 22px;
}

.care h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.care p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.faq-bottom {
  position: relative;
  margin-top: 8px;
}

.faq-photo {
  position: relative;
  overflow: hidden;
}

.faq-bottom img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.faq-caption {
  display: none;
  position: absolute;
  right: 6%;
  bottom: 28px;
  max-width: 12ch;
  text-align: right;
  color: var(--olive);
  margin: 0;
}

.faq-bottom .btn {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: min(100%, 420px);
  margin: -22px auto 12px;
  z-index: 1;
  padding-inline: 28px;
}

@media (min-width: 760px) {
  .care {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 26px 28px;
  }

  .care .icon-lg {
    width: 36px;
    height: 36px;
  }
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.book-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  place-items: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
}

.book-modal.is-open {
  display: grid !important;
}

.book-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 560px);
  max-height: min(90dvh, 90vh, 860px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px 16px;
  background: #f7f1ea;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(67, 55, 40, 0.22);
  color: var(--ink);
}

.book-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 241, 236, 0.28), rgba(236, 226, 214, 0.38)),
    url("../images/bg/team.jpg") center / cover no-repeat;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.book-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-soft);
}

.book-close:hover {
  background: rgba(67, 79, 63, 0.06);
}

.book-dialog h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-right: 36px;
}

.book-lead {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.book-psych {
  margin: -4px 0 12px;
  font-size: 0.92rem;
  color: var(--olive);
  font-weight: 600;
}

.book-form {
  display: grid;
  gap: 10px;
}

.book-field {
  position: relative;
  display: block;
}

.book-field .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.book-field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px 10px 44px;
  border: 1px solid #e4d6c8;
  border-radius: 999px;
  background: #fffdf9;
  color: var(--ink);
  font-size: 16px;
}

.book-field input::placeholder {
  color: #9a8f84;
}

.book-field input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 137, 90, 0.16);
}

.book-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 6px 0 4px;
  padding: 6px 4px;
  background: #efe6dc;
  border-radius: 22px;
}

.book-meta > div {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
  padding: 8px 4px;
}

.book-meta > div + div {
  border-left: 1px solid rgba(176, 137, 90, 0.18);
}

.book-meta .icon {
  color: var(--gold);
}

.book-meta span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.book-meta strong {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: pre-line;
}

.book-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 2px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.book-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.book-check {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  background: transparent;
}

.book-check .icon {
  width: 14px;
  height: 14px;
  opacity: 0;
  color: #fff;
}

.book-consent input:checked + .book-check {
  background: var(--gold);
}

.book-consent input:checked + .book-check .icon {
  opacity: 1;
}

.book-consent input:focus-visible + .book-check {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.book-policy {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  font: inherit;
}

.book-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.book-secure .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.book-view[hidden] {
  display: none;
}

@media (min-width: 640px) {
  .book-dialog {
    padding: 36px 40px 24px;
    border-radius: 32px;
  }

  .book-lead {
    font-size: 0.98rem;
    margin-bottom: 16px;
  }

  .book-psych {
    margin: -6px 0 16px;
  }

  .book-form {
    gap: 12px;
  }

  .book-meta > div {
    padding: 14px 10px;
  }

  .book-meta strong {
    font-size: 0.92rem;
  }

  .book-field input {
    min-height: 52px;
  }

  .book-consent {
    font-size: 0.86rem;
    margin: 8px 0 6px;
  }
}

@media (max-height: 820px) {
  .book-secure {
    display: none;
  }
}

@media (max-height: 740px) {
  .book-lead {
    display: none;
  }

  .book-dialog h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .book-dialog {
    padding-top: 20px;
    padding-bottom: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 639px) {
  .hero-visual {
    width: 100%;
  }

  .hero-visual img {
    height: auto;
  }

  .hero-facts {
    gap: 6px;
    margin: 22px 0 22px;
  }

  .hero-facts li {
    padding: 0 4px;
  }

  .hero-facts .icon {
    width: 34px;
    height: 34px;
  }

  .hero-facts strong {
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .hero-facts span {
    font-size: 0.7rem;
  }

  .btn-hero {
    width: fit-content;
    max-width: calc(100% - 32px);
  }

  .hero .btn-block,
  .method .btn,
  .pricing .btn,
  .requests-aside .btn,
  .faq-bottom .btn {
    width: 100%;
    max-width: none;
  }

  .btn-howto,
  .howto .btn {
    width: fit-content;
    max-width: calc(100% - 24px);
  }

  .psych-photo {
    width: 136px;
    height: 136px;
  }

  .faq-trigger {
    min-height: 64px;
    padding: 12px 0;
    gap: 8px;
    grid-template-columns: 36px 1fr 18px;
    font-size: 0.95rem;
  }

  .faq-item .bubble {
    width: 36px;
    height: 36px;
  }

  .faq-item .faq-body {
    padding-left: 0;
  }

  .faq-caption {
    display: none;
  }

  .faq-bottom img {
    height: auto;
    object-fit: contain;
  }

  .faq-bottom .btn {
    margin: 0 auto 12px;
  }

  .team-intro {
    gap: 6px;
    margin-bottom: 20px;
  }

  .team-qr {
    font-size: 3rem;
  }

  .care .btn-ghost {
    width: 100%;
  }

  .book-lead {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .book-consent {
    font-size: 0.8rem;
  }

  .section-head h2 {
    max-width: none;
  }
}

@media (max-width: 379px) {
  .logo-text span {
    display: none;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-facts strong {
    font-size: 0.8rem;
  }

  .hero-visual img {
    height: auto;
  }

  .btn-hero {
    font-size: 0.92rem;
  }

  .book-meta span {
    font-size: 0.7rem;
  }

  .book-meta strong {
    font-size: 0.7rem;
  }
}
