:root {
  --bg: #F5F1EB;
  --bg-card: #FBFAF7;
  --ink: #1A1815;
  --ink-soft: #2D2A26;
  --muted: #75695C;
  --line: #E3DCD0;
  --accent: #B8472A;
  --accent-soft: #D97548;
  --display: 'Manrope', system-ui, -apple-system, sans-serif;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* === Skip link === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  z-index: 200;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* === Focus === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === Nav === */
nav {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}
.logo:hover {
  color: var(--ink-soft);
}
.logo:hover .logo-mark {
  opacity: 0.82;
}
.logo-mark {
  flex-shrink: 0;
  display: block;
  height: 1.5em;
  width: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.nav-toggle:hover { color: var(--accent); }

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

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a[aria-current="page"] {
  color: var(--accent);
}
.nav-links a[aria-current="page"]:not(.nav-cta) {
  position: relative;
}
.nav-links a[aria-current="page"]:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--accent);
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}
.nav-cta[aria-current="page"] {
  background: var(--ink);
  color: var(--bg) !important;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 4px;
    margin-top: 8px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.nav-cta) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-links a[aria-current="page"]:not(.nav-cta)::after { display: none; }
  .nav-links .nav-cta {
    margin-top: 16px;
    text-align: center;
  }
}

/* === Hero === */
.hero {
  padding: 80px 0 120px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 18ch;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  text-wrap: balance;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title__line {
  display: block;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 44px;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.5s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-lede, .hero-actions { animation: none; }
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-primary .arrow { transition: transform 0.25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-meta {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

.hero-mark {
  position: absolute;
  top: 18%;
  right: -40px;
  width: clamp(200px, 28vw, 380px);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
}
.hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}

/* === Scroll reveal === */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease var(--reveal-delay, 0s),
              transform 0.6s ease var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Steps keep their background visible; only slide content in */
.process-grid .step[data-reveal] {
  opacity: 1;
  transform: translateY(16px);
}
.process-grid .step[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* === Sections === */
section.block {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
section.block:first-of-type { border-top: none; }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 24px;
}
.section-label .num {
  font-family: var(--display);
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 20ch;
}
.section-title em { font-style: italic; color: var(--accent); }

.section-intro {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 64px;
}

/* === Page header (interior pages) === */
.page-head {
  padding: 60px 0 20px;
}
.page-head .section-title {
  margin-bottom: 20px;
}
.page-head .section-intro {
  margin-bottom: 0;
}

/* === Process === */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  background: var(--bg);
  padding: 40px 36px;
}
.step-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 24px;
  display: block;
}
.step-num::before { content: '— '; }
.step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* === Offer === */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-top: 40px;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-item {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.offer-item h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.offer-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* === Pricing === */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; gap: 40px; } }

.price-main {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 56px 48px;
}
.price-tag {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 8px;
}
.price-tag .currency {
  font-size: 38px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--muted);
}
.price-tag--quote {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.price-cta {
  margin-top: 32px;
}
.price-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  font-weight: 500;
}
.price-list { list-style: none; }
.price-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.price-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex-shrink: 0;
}

.price-side { padding-top: 8px; }
.price-side h4 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.price-side > p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.retainer {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--bg-card);
}
.retainer-price {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.retainer-price .per {
  font-size: 14px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-weight: 400;
}
.retainer-price--quote {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.retainer p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* === Ownership === */
.ownership-text {
  max-width: 68ch;
  margin-bottom: 56px;
}
.ownership-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.ownership-text p:last-child { margin-bottom: 0; }

.compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.compare th,
.compare td {
  padding: 18px 24px;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare thead th {
  background: var(--bg);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.compare thead th:last-child { color: var(--accent); }
.compare td:first-child {
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
}
.compare td:last-child {
  color: var(--ink);
  font-weight: 500;
}

/* === About === */
.about-text { max-width: 64ch; }
.about-text p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text p:first-child {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.team-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.team-link:hover { color: var(--accent); }

/* === Team grid === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 420px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 16px 16px 24px;
}
.team-photo {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 20px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 44px;
  color: var(--muted);
  background: var(--bg);
}
.team-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  padding: 0 4px;
}
.team-role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
  padding: 0 4px;
}
.team-card .team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s ease;
}
.team-card .team-linkedin:hover { color: var(--accent); }
.team-card .team-linkedin svg { flex-shrink: 0; }

/* === Contact form === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 40px; } }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px 36px;
}
.form-row {
  margin-bottom: 22px;
}
.form-row label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-row label .req { color: var(--accent); }
.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.form-row .field-error {
  display: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}
.form-row.has-error input,
.form-row.has-error textarea {
  border-color: var(--accent);
}
.form-row.has-error .field-error {
  display: block;
}

/* Honeypot — visually hidden, off-screen */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  border: none;
  cursor: pointer;
  font-family: var(--body);
}
.form-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.form-status:empty { margin-top: 0; }
.form-status.is-success { color: #3A7D44; }
.form-status.is-error { color: var(--accent); }

.contact-aside h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.contact-aside p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-bottom: 18px;
}
.contact-detail .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-detail a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.contact-detail a:hover { color: var(--accent); }
.contact-detail .plain { color: var(--ink-soft); font-weight: 500; }

/* === CTA === */
.cta-block {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 71, 42, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-block .wrap { position: relative; z-index: 1; }

.cta-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9C4BC;
  margin-bottom: 28px;
}
.cta-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px rgba(217, 117, 72, 0.15);
  flex-shrink: 0;
}

.cta-block h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 16ch;
}
.cta-block h2 em { font-style: italic; color: var(--accent-soft); }
.cta-block p {
  font-size: 18px;
  color: #C9C4BC;
  max-width: 50ch;
  margin-bottom: 40px;
  line-height: 1.55;
}
.cta-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-light {
  background: var(--bg);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-light:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}
.cta-email {
  color: var(--bg);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid #555;
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}
.cta-email:hover { border-color: var(--accent-soft); }

/* === 404 === */
.notfound {
  padding: 120px 0 140px;
  text-align: center;
}
.notfound .code {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(80px, 16vw, 160px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 16px;
}
.notfound h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.notfound p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.notfound .hero-actions { justify-content: center; }

/* === Footer === */
footer {
  background: var(--ink);
  color: #888;
  padding: 32px 0 40px;
  font-size: 13px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #2A2724;
  padding-top: 32px;
}
footer .footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .footer-nav a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer .footer-nav a:hover { color: var(--bg); }
footer .made {
  font-style: italic;
  font-family: var(--display);
  font-weight: 500;
}

/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
  nav { padding: 24px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-mark { display: none; }
  .logo { font-size: 21px; }
  .hero-title {
    max-width: none;
    font-size: clamp(2.125rem, 8.5vw, 3.25rem);
    line-height: 1.12;
    gap: 0.25em;
    letter-spacing: -0.025em;
  }
  .hero-title__line {
    max-width: 13em;
  }
  .hero-lede {
    max-width: none;
    font-size: 17px;
    margin-bottom: 36px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  section.block { padding: 70px 0; }
  .page-head { padding: 40px 0 10px; }
  .step { padding: 32px 24px; }
  .price-main { padding: 36px 28px; }
  .contact-form { padding: 32px 24px; }
  .section-intro { font-size: 17px; }
  .cta-block { padding: 72px 0; }
}
@media (max-width: 400px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero-title__line { max-width: none; }
  .price-tag--quote { font-size: 28px; }
}
