/* ============ Tokens ============ */
:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede6;
  --ink: #1c1b19;
  --ink-soft: #5c594f;
  --ink-faint: #8b877c;
  --line: rgba(28, 27, 25, 0.1);
  --line-strong: rgba(28, 27, 25, 0.18);
  --accent: #b5432b;
  --accent-dark: #963624;
  --accent-soft: rgba(181, 67, 43, 0.1);
  --on-accent: #fdf7f2;
  --dark: #17150f;
  --dark-soft: #2a271f;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-md: 0 20px 50px -25px rgba(28, 27, 25, 0.35);
  --shadow-lg: 0 30px 80px -30px rgba(28, 27, 25, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ Reset ============ */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.accent-underline {
  position: relative;
  white-space: nowrap;
}
.accent-underline::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0.05em;
  height: 0.22em;
  background: var(--accent-soft);
  border-radius: 4px;
  z-index: -1;
}

.ico-sm svg, svg.ico-sm { width: 16px; height: 16px; }
.ico-md svg, svg.ico-md { width: 20px; height: 20px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 12px 24px -12px rgba(181, 67, 43, 0.6);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(181, 67, 43, 0.65); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(28,27,25,0.04); transform: translateY(-2px); }

.btn--on-dark { box-shadow: 0 16px 40px -14px rgba(181, 67, 43, 0.55); }

.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 245, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 248, 245, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a { position: relative; padding: 4px 0; transition: color 0.2s var(--ease); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--ink);
  position: relative;
  width: 36px;
  height: 36px;
}
.nav__burger svg { position: absolute; inset: 6px; width: 24px; height: 24px; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.nav__burger .icon-close { opacity: 0; transform: scale(0.7) rotate(-45deg); }
.nav__burger[aria-expanded="true"] .icon-open { opacity: 0; transform: scale(0.7) rotate(45deg); }
.nav__burger[aria-expanded="true"] .icon-close { opacity: 1; transform: scale(1) rotate(0); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 12px 24px 28px;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), visibility 0.28s;
  z-index: 490;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 16px;
}
.mobile-menu .btn { margin-top: 16px; }

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1.is-visible { transition-delay: 0.06s; }
.reveal--delay-2.is-visible { transition-delay: 0.14s; }
.reveal--delay-3.is-visible { transition-delay: 0.22s; }

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

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 56px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 6px 0 22px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__credentials { display: flex; flex-direction: column; gap: 12px; }
.hero__credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__credentials li svg { color: var(--accent); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 6s var(--ease);
}
.hero__photo-frame:hover .hero__photo { transform: scale(1.04); }

.hero__badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 240px;
}
.hero__badge-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.hero__badge-role { font-size: 13px; color: var(--ink-soft); }

.hero__scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  color: var(--ink-faint);
  animation: bob 2.4s ease-in-out infinite;
  opacity: 0.7;
}
.hero__scroll-hint svg { width: 20px; height: 20px; }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) rotate(180deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(180deg) translateY(-6px); }
}

/* ============ About ============ */
.about { padding: 90px 0; background: var(--bg-alt); }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__paragraph { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.about__points { display: grid; gap: 12px; margin-top: 24px; }
.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}
.about__points li svg { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ============ Cards / Directions ============ */
.directions { padding: 100px 0; }
.directions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__title { font-family: var(--font-display); font-size: 21px; font-weight: 500; margin-bottom: 8px; }
.card__desc { color: var(--ink-soft); font-size: 15px; }

/* ============ Benefits ============ */
.benefits { padding: 100px 0; background: var(--bg-alt); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px 40px;
}
.benefit { display: flex; gap: 18px; align-items: flex-start; }
.benefit__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit__title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.benefit__desc { color: var(--ink-soft); font-size: 14.5px; }

/* ============ Steps ============ */
.steps { padding: 100px 0; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 28px 22px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.step__number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 14px;
  font-weight: 500;
}
.step__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step__desc { color: var(--ink-soft); font-size: 14.5px; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 20px;
  height: 1px;
  background: var(--line-strong);
  display: none;
}
@media (min-width: 900px) {
  .step:not(:last-child)::after { display: block; }
}

/* ============ Gallery ============ */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.gallery__grid {
  columns: 3 280px;
  column-gap: 20px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 1px 0 var(--line);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(23, 21, 15, 0.78), transparent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 11, 0.94);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
  padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(88vw, 720px);
  max-height: 76vh;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__caption { color: #eae6df; margin-top: 18px; font-size: 14.5px; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--prev svg { transform: rotate(180deg); }
.lightbox__nav--next { right: 20px; }
.lightbox__nav svg { width: 20px; height: 20px; }

/* ============ Testimonials ============ */
.testimonials { padding: 100px 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.testimonial__quote { color: var(--accent); opacity: 0.5; margin-bottom: 14px; }
.testimonial__quote svg { width: 28px; height: 28px; }
.testimonial__text { font-size: 15.5px; color: var(--ink); margin-bottom: 20px; }
.testimonial__author { font-weight: 600; font-size: 14.5px; display: flex; flex-direction: column; }
.testimonial__role { font-weight: 400; color: var(--ink-faint); font-size: 13px; }
.testimonial--placeholder {
  border-style: dashed;
  border-color: var(--line-strong);
  background: transparent;
}
.testimonial--placeholder .testimonial__text { color: var(--ink-faint); font-style: italic; }
.testimonial__author--placeholder { color: var(--ink-faint); font-weight: 500; font-size: 13.5px; }

/* ============ Format ============ */
.format { padding: 100px 0; background: var(--bg-alt); }
.format__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.format__item {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--line);
}
.format__item h3 { font-family: var(--font-display); font-size: 19px; font-weight: 500; margin-bottom: 8px; }
.format__item p { color: var(--ink-soft); font-size: 15px; }

/* ============ Final CTA ============ */
.cta-final {
  background: var(--dark);
  color: #fff;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 320px;
  background: radial-gradient(circle, rgba(181,67,43,0.35), transparent 70%);
}
.cta-final__inner { position: relative; max-width: 680px; }
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-final p { color: #cfcabf; font-size: 17px; margin-bottom: 36px; }

/* ============ Contacts ============ */
.contacts { padding: 100px 0; }
.section-head--center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { display: inline-block; }
.contacts__lead { color: var(--ink-soft); margin: 18px auto 0; max-width: 480px; }

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.contact-btn__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-btn__icon svg { width: 22px; height: 22px; }
.contact-btn__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-btn__label { font-weight: 600; font-size: 16px; }
.contact-btn__sub { font-size: 13.5px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-btn__arrow { margin-left: auto; color: var(--ink-faint); flex-shrink: 0; transition: transform 0.25s var(--ease); width: 18px; height: 18px; }
.contact-btn:hover .contact-btn__arrow { transform: translateX(3px); color: var(--accent); }

.contact-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.contact-btn--disabled:hover { transform: none; box-shadow: none; border-color: var(--line-strong); }

.contacts__phone-note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 15px;
}
.contacts__phone-note a { color: var(--accent); font-weight: 600; }
.contacts__phone-note a:hover { text-decoration: underline; }

.field, .field-row .field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field-note { font-size: 14px; min-height: 20px; color: var(--ink-soft); }
.field-note.success { color: #2f7a4f; font-weight: 600; }
.field-note.error { color: var(--accent-dark); font-weight: 600; }

/* ============ Policy page ============ */
.policy { padding: 72px 0 100px; }
.policy__container { max-width: 720px; }
.policy__container .section-title { margin: 10px 0 32px; }
.policy__body { display: flex; flex-direction: column; gap: 18px; }
.policy__body p { color: var(--ink-soft); font-size: 16px; }

/* ============ Footer ============ */
.footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__privacy-link { text-decoration: underline; text-underline-offset: 3px; }
.footer__privacy-link:hover { color: var(--ink); }

.footer__credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.footer__credit a { color: inherit; transition: color 0.2s var(--ease); }
.footer__credit a:hover { color: var(--accent); }

/* ============ To top ============ */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s;
  z-index: 400;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }
.to-top svg { width: 20px; height: 20px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 2 240px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 36px 0 64px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__badge { left: 12px; right: 12px; bottom: 16px; max-width: none; }
  .about, .directions, .benefits, .steps, .gallery, .testimonials, .format, .contacts { padding: 64px 0; }
  .cta-final { padding: 72px 0; }
  .steps__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery__grid { columns: 1 100%; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
