/**
 * Jonny B GmbH – Landing-Page-Styles
 * Basiert auf den Design-Tokens aus der Claude-Design-Datei.
 * Setzt variables.css voraus.
 */

/* ===== DESIGN-TOKENS (Landing-Page-spezifisch) ===== */
:root {
  --lp-green:         #aad019;
  --lp-green-dark:    #7f9e0e;
  --lp-green-ink:     #46580b;
  --lp-green-soft:    #f5f9e4;
  --lp-neutral-25:    #faf9f6;
  --lp-neutral-50:    #f4f3ef;
  --lp-neutral-100:   #eae8e2;
  --lp-neutral-200:   #dad8d1;
  --lp-neutral-300:   #c2c0b8;
  --lp-neutral-500:   #929395;
  --lp-neutral-700:   #4f4f4c;
  --lp-neutral-800:   #333331;
  --lp-neutral-900:   #1f1f1d;
  --lp-wood-oak:      #cba978;
  --lp-wood-cherry:   #a9714a;
  --lp-wood-walnut:   #6b4a2e;
  --lp-wood-smoked:   #43301f;
  --lp-wood-ash:      #e4d3b6;
  --lp-shadow-sm:     0 1px 3px rgba(31,31,29,.08), 0 1px 2px rgba(31,31,29,.05);
  --lp-shadow-md:     0 4px 12px rgba(31,31,29,.08), 0 2px 4px rgba(31,31,29,.05);
  --lp-shadow-lg:     0 12px 32px rgba(31,31,29,.10), 0 4px 8px rgba(31,31,29,.05);
  --lp-radius-md:     6px;
  --lp-radius-lg:     10px;
  --lp-radius-xl:     16px;
  --lp-radius-pill:   999px;
  --lp-border:        1px solid var(--lp-neutral-200);
  --lp-container:     1200px;
  --lp-header-h:      72px;
  --lp-font:          'Open Sans', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --lp-ease:          cubic-bezier(.4,0,.2,1);
  --lp-duration:      200ms;
}

/* ===== RESET / BASE ===== */
.template-landingpage *,
.template-landingpage *::before,
.template-landingpage *::after {
  box-sizing: border-box;
}

.template-landingpage {
  margin: 0;
  font-family: var(--lp-font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--lp-neutral-900);
  background: var(--lp-neutral-25);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.template-landingpage main {
  display: block;
}

/* ===== SKIP LINK ===== */
.lp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--lp-green);
  color: var(--lp-neutral-900);
  padding: .5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--lp-radius-md) var(--lp-radius-md);
}
.lp-skip-link:focus { left: 0; }

/* ===== HEADER ===== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--lp-header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: var(--lp-border);
  transition: box-shadow var(--lp-duration) var(--lp-ease);
}
.lp-header--scrolled {
  box-shadow: var(--lp-shadow-sm);
}
.lp-header__inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lp-header__logo img {
  display: block;
  height: 44px;
  width: auto;
}
.lp-header__nav {
  display: flex;
  gap: 1.25rem;
  margin-left: .75rem;
}
.lp-header__nav a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--lp-neutral-700);
  text-decoration: none;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--lp-duration) var(--lp-ease),
              border-color var(--lp-duration) var(--lp-ease);
}
.lp-header__nav a:hover {
  color: var(--lp-neutral-900);
  border-bottom-color: var(--lp-green);
}
.lp-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lp-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--lp-neutral-900);
  text-decoration: none;
  white-space: nowrap;
}
.lp-header__phone:hover { color: var(--lp-green-dark); }

/* Burger-Button */
.lp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.lp-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lp-neutral-900);
  border-radius: 2px;
  transition: transform var(--lp-duration) var(--lp-ease), opacity var(--lp-duration);
}
.lp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.lp-mobile-nav {
  position: fixed;
  top: var(--lp-header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: var(--lp-border);
  box-shadow: var(--lp-shadow-md);
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: .75rem;
}
.lp-mobile-nav[hidden] { display: none; }
.lp-mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-neutral-900);
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid var(--lp-neutral-100);
}
.lp-mobile-nav a:last-child { border-bottom: none; }
.lp-mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--lp-green-dark) !important;
}

/* ===== LAYOUT ===== */
.lp-wrap {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 2rem;
}
.lp-section {
  padding: 5rem 0;
}
.lp-section + .lp-section {
  /* Sections mit eigenem Hintergrund setzen padding direkt */
}

/* ===== TYPOGRAPHY ===== */
.lp-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lp-green-ink);
  margin-bottom: .75rem;
}
.lp-eyebrow--light   { color: var(--lp-neutral-900); }
.lp-eyebrow--on-green { color: #313e09; }

.lp-section__h2 {
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--lp-neutral-900);
  margin: 0 0 2.5rem;
  text-wrap: balance;
}
.lp-section__h2--light { color: var(--lp-neutral-900); }

/* ===== BUTTONS ===== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--lp-font);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--lp-radius-md);
  transition: background var(--lp-duration) var(--lp-ease),
              transform 100ms var(--lp-ease),
              box-shadow var(--lp-duration) var(--lp-ease);
  white-space: nowrap;
}
.lp-btn:focus-visible {
  outline: 2px solid var(--lp-green-dark);
  outline-offset: 2px;
}
.lp-btn:active { transform: translateY(1px); }

.lp-btn--primary {
  background: var(--lp-green);
  color: var(--lp-neutral-900);
}
.lp-btn--primary:hover {
  background: #99bd12;
  box-shadow: var(--lp-shadow-md);
}
.lp-btn--secondary {
  background: #fff;
  color: var(--lp-neutral-900);
  border: 1.5px solid var(--lp-neutral-300);
}
.lp-btn--secondary:hover {
  background: var(--lp-neutral-50);
  border-color: var(--lp-neutral-400);
}
.lp-btn--ink {
  background: var(--lp-neutral-900);
  color: #fff;
}
.lp-btn--ink:hover { background: var(--lp-neutral-800); }

.lp-btn--sm  { padding: .5rem 1.125rem; font-size: .875rem; }
.lp-btn--md  { padding: .6875rem 1.5rem; font-size: .9375rem; }
.lp-btn--lg  { padding: .875rem 2rem; font-size: 1rem; }
.lp-btn--block { width: 100%; }

/* ===== HERO ===== */
.lp-hero {
  padding: 5rem 0 4rem;
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 3rem;
  align-items: center;
}
.lp-hero__text .lp-eyebrow { margin-bottom: 1rem; }
.lp-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--lp-neutral-900);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.lp-hero__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--lp-neutral-700);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}
.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: var(--lp-border);
  border-radius: var(--lp-radius-pill);
  font-size: .875rem;
  color: var(--lp-neutral-700);
}
.lp-badge svg { color: var(--lp-green-ink); }

.lp-hero__img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  background: linear-gradient(155deg,
    color-mix(in srgb, var(--lp-wood-oak) 78%, white),
    var(--lp-wood-cherry) 55%,
    color-mix(in srgb, var(--lp-wood-walnut) 80%, black));
}
.lp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-hero__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 600;
}

/* ===== VORTEILE ===== */
.lp-vorteile {
  background: #fff;
  border-top: var(--lp-border);
  border-bottom: var(--lp-border);
}
.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-card {
  background: var(--lp-neutral-25);
  border: var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 1.75rem;
}
.lp-vorteil-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--lp-radius-md);
  background: var(--lp-green-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--lp-green-ink);
}
.lp-vorteil-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 .5rem;
}
.lp-vorteil-card__text {
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--lp-neutral-700);
  margin: 0;
}

/* ===== GALERIE ===== */
.lp-galerie { background: var(--lp-neutral-25); }
.lp-galerie__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.lp-galerie__head .lp-section__h2 { margin-bottom: 0; }
.lp-galerie__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--lp-green-ink);
  text-decoration: none;
  white-space: nowrap;
}
.lp-galerie__cta-link:hover { text-decoration: underline; }

.lp-gallery-card {
  background: #fff;
  border: var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  transition: box-shadow var(--lp-duration) var(--lp-ease),
              transform var(--lp-duration) var(--lp-ease);
}
.lp-gallery-card:hover:not(.lp-gallery-card--placeholder) {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-2px);
}
.lp-gallery-card__img-wrap {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--lp-wood-oak) 80%, white),
    var(--lp-wood-oak) 60%,
    color-mix(in srgb, var(--lp-wood-walnut) 70%, black));
}
.lp-gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--lp-ease);
}
.lp-gallery-card:hover .lp-gallery-card__img {
  transform: scale(1.04);
}
.lp-gallery-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
}
.lp-gallery-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: 4px 10px;
  background: var(--lp-green);
  color: var(--lp-neutral-900);
  border-radius: var(--lp-radius-pill);
  font-size: .8125rem;
  font-weight: 700;
}
.lp-gallery-card__info {
  padding: 1rem 1.25rem;
}
.lp-gallery-card__detail {
  font-size: .875rem;
  color: var(--lp-neutral-700);
  margin: 0;
}

/* ===== REFERENZEN ===== */
.lp-referenzen {
  background: var(--lp-neutral-500);
  padding: 5rem 0;
}
.lp-testimonial {
  margin: 0;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--lp-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-testimonial__quote-icon { color: var(--lp-green-ink); }
.lp-testimonial__text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--lp-neutral-900);
}
.lp-testimonial__author {
  font-size: .875rem;
  color: var(--lp-neutral-700);
  margin-top: auto;
}
.lp-testimonial__author strong { color: var(--lp-neutral-900); }

/* ===== ABLAUF ===== */
.lp-ablauf { background: var(--lp-neutral-25); }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lp-step {}
.lp-step__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.lp-step__num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--lp-radius-pill);
  background: var(--lp-neutral-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 600;
}
.lp-step__num--accent {
  background: var(--lp-green);
  color: var(--lp-neutral-900);
}
.lp-step__icon { color: var(--lp-green-ink); }
.lp-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 .5rem;
}
.lp-step__text {
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--lp-neutral-700);
  margin: 0;
}

/* ===== KONTAKT / CTA ===== */
.lp-kontakt { background: var(--lp-neutral-25); }
.lp-cta-box {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  background: var(--lp-green);
  border-radius: var(--lp-radius-xl);
  padding: 4rem 3rem;
  align-items: start;
}
.lp-cta-box__h2 {
  font-size: clamp(1.75rem, 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--lp-neutral-900);
  margin: .75rem 0 1rem;
  text-wrap: balance;
}
.lp-cta-box__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--lp-neutral-900);
  opacity: .85;
  max-width: 44ch;
  margin: 0 0 1.75rem;
}
.lp-cta-box__contacts {
  display: grid;
  gap: .625rem;
}
.lp-cta-box__contact-item {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--lp-neutral-900);
  text-decoration: none;
  font-weight: 400;
}
a.lp-cta-box__contact-item { font-weight: 700; }
a.lp-cta-box__contact-item:hover { text-decoration: underline; }

/* Formular-Karte */
.lp-form-card {
  background: #fff;
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  box-shadow: var(--lp-shadow-lg);
}
.lp-form-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--lp-neutral-900);
}

/* Formular-Felder */
.lp-form { display: grid; gap: 1rem; }
.lp-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.lp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.lp-form__group { display: grid; gap: 6px; }
.lp-form__group--checkbox { align-items: start; }
.lp-form__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--lp-neutral-700);
}
.lp-form__req  { color: var(--color-error, #c0392b); }
.lp-form__opt  { font-weight: 400; color: var(--lp-neutral-500); font-size: .8125rem; }
.lp-form__input {
  width: 100%;
  height: 44px;
  padding: 0 .75rem;
  border: 1px solid var(--lp-neutral-300);
  border-radius: var(--lp-radius-md);
  font-family: var(--lp-font);
  font-size: 1rem;
  color: var(--lp-neutral-900);
  background: #fff;
  transition: border-color var(--lp-duration) var(--lp-ease),
              box-shadow var(--lp-duration) var(--lp-ease);
  appearance: none;
}
.lp-form__input:focus {
  outline: none;
  border-color: var(--lp-green-dark);
  box-shadow: 0 0 0 3px rgba(170,208,25,.25);
}
.lp-form__textarea {
  height: auto;
  padding: .75rem;
  resize: vertical;
  line-height: 1.5;
}
.lp-form__select { cursor: pointer; padding-right: 2rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234f4f4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .6rem center; }
.lp-form__hint { font-size: .8125rem; color: var(--lp-neutral-500); }
.lp-form__checkbox-label {
  display: flex;
  gap: .625rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--lp-neutral-700);
}
.lp-form__checkbox-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--lp-green-dark);
  cursor: pointer;
}
.lp-form__checkbox-label a {
  color: var(--lp-green-ink);
  text-decoration: underline;
}
.lp-form__footer {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .25rem;
}
.lp-form__req-note {
  font-size: .8125rem;
  color: var(--lp-neutral-500);
  margin: 0;
}
.lp-form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--lp-radius-md);
  font-size: .9375rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.lp-form-alert ul {
  margin: .5rem 0 0 1.25rem;
  padding: 0;
}
.lp-form-alert--success {
  background: #eafaf1;
  border: 1px solid #a3d9a5;
  color: #1e6b3a;
}
.lp-form-alert--error {
  background: #fdecea;
  border: 1px solid #f5aeab;
  color: #6b2421;
}

/* ===== FOOTER ===== */
.lp-footer {
  background: var(--lp-neutral-900);
  color: var(--lp-neutral-300);
  padding: 4rem 0 2rem;
  font-size: .9375rem;
}
.lp-footer__inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #333331;
}
.lp-footer__brand img { display: block; margin-bottom: 1rem; }
.lp-footer__brand p {
  font-size: .875rem;
  color: var(--lp-neutral-500);
  line-height: 1.6;
  max-width: 30ch;
  margin: 0 0 .75rem;
}
.lp-footer__claim {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-green) !important;
  margin: 0 !important;
}
.lp-footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lp-neutral-500);
  margin: 0 0 1rem;
}
.lp-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.lp-footer__col a {
  font-size: .875rem;
  color: var(--lp-neutral-300);
  text-decoration: none;
}
.lp-footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}
.lp-footer__col address {
  font-style: normal;
  font-size: .875rem;
  color: var(--lp-neutral-400);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.lp-footer__phone,
.lp-footer__mail {
  display: block;
  font-size: .875rem;
  color: var(--lp-neutral-300);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: .25rem;
}
.lp-footer__phone:hover { color: #fff; text-decoration: underline; }
.lp-footer__legal {
  max-width: var(--lp-container);
  margin: 1.5rem auto 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8125rem;
  color: var(--lp-neutral-500);
}
.lp-footer__legal nav {
  display: flex;
  gap: 1.5rem;
}
.lp-footer__legal a {
  color: var(--lp-neutral-500);
  text-decoration: none;
}
.lp-footer__legal a:hover { color: var(--lp-neutral-300); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lp-grid-4 { grid-template-columns: 1fr 1fr; }
  .lp-cta-box { grid-template-columns: 1fr; }
  .lp-cta-box { padding: 3rem 2rem; }
  .lp-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero__img-wrap { aspect-ratio: 16/9; order: -1; }
  .lp-grid-3 { grid-template-columns: 1fr 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .lp-header__nav,
  .lp-header__actions .lp-btn { display: none; }
  .lp-header__phone { display: none; }
  .lp-burger { display: flex; }
  .lp-header__actions { margin-left: auto; }
}
@media (max-width: 640px) {
  .lp-wrap { padding: 0 1.25rem; }
  .lp-section { padding: 3.5rem 0; }
  .lp-hero { padding: 3rem 0 2.5rem; }
  .lp-grid-3 { grid-template-columns: 1fr; }
  .lp-grid-4 { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-form__row { grid-template-columns: 1fr; }
  .lp-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-footer__legal { flex-direction: column; align-items: flex-start; }
  .lp-cta-box { padding: 2rem 1.25rem; }
  .lp-form-card { padding: 1.5rem 1.25rem; }
}

/* ===== SMOOTH SCROLL ===== */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .lp-gallery-card__img {
    /* transition already defined above */
  }
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0ms !important; }
}
