/* Lawn landing page — page-specific styles. Tokens/footer/button live in /shared/tokens.css */

.lawn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--rl-space-200);
  background: var(--rl-gradient);
  padding: 16px 21px;
}
.lawn-header p {
  margin: 0;
  color: var(--rl-text-on-brand);
  font-weight: 600;
  font-size: var(--rl-body-size);
  line-height: 1.4;
}
.lawn-header u {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.lawn-nav {
  position: sticky;
  top: 0;
  z-index: 6;
  background: var(--rl-bg-translucent);
  display: flex;
  justify-content: center;
  padding: 16px 12px;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.lawn-nav.is-scrolled {
  border-bottom-color: var(--rl-border);
}
.lawn-nav__brand {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--rl-text);
}
.lawn-nav__brand img {
  width: 36px;
  height: 21px;
  color: var(--rl-text);
  object-fit: contain;
}
.lawn-nav__brand span {
  font-weight: 800;
  font-size: 18px;
  /* text-transform: uppercase; */
  color: var(--rl-text);
}
.lawn-nav__brand .accent {
  color: var(--rl-text);
}

/* desktop: announcement bar centers up */
@media (min-width: 1280px) {
  .lawn-header {
    justify-content: center;
    text-align: center;
  }
  .lawn-header p br {
    display: none;
  }
}

/* ── Hero 2 (Figma "Simple Design System – Optik" refresh) ──────────────── */

.lawn-hero2 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 28px 28px 84px;
}
.lawn-hero2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero_bg.jpg') center 70% / cover no-repeat;
}
.lawn-hero2__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 36, 0.1) 0%, rgba(7, 22, 36, 0.55) 100%);
}
.lawn-hero2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1240px;
}
.lawn-hero2__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.lawn-hero2__title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(2.75rem, 10vw, 6rem);
}
.lawn-hero2__subtitle {
  margin: 0;
  max-width: 560px;
  color: #f3f3f3;
  font-weight: 500;
  line-height: 1.3;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}
.lawn-hero2__device {
  width: min(400px, 88vw);
}
.lawn-hero2__device img {
  width: 100%;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.35));
}

@media (min-width: 1024px) {
  .lawn-hero2 {
    min-height: 720px;
    padding: 32px 64px 96px;
  }
  .lawn-hero2__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
  .lawn-hero2__text {
    align-items: flex-start;
    text-align: left;
    max-width: 620px;
  }
  .lawn-hero2__device {
    width: min(560px, 42vw);
    flex-shrink: 0;
  }
}

/* ── Special cards (2x2 mosaic) ──────────────────────────────────────────── */

.lawn-special-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
}
.lawn-special-card {
  flex: 1 1 460px;
  background: linear-gradient(135deg, #eaeae4 0%, #f2f7f6 100%);
  border-radius: 0;
  padding: 32px 28px 52px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.lawn-special-card__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(1.75rem, 4vw, 3rem);
}
.lawn-special-card__body {
  margin: 0;
  max-width: 420px;
  font-weight: 500;
  line-height: 1.3;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

@media (min-width: 700px) {
  .lawn-special-card {
    min-height: 440px;
  }
}

@media (min-width: 1024px) {
  .lawn-special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .lawn-special-card {
    padding-left: 64px;
  }
  .lawn-special-card:nth-child(even) {
    padding-right: 64px;
  }
}

/* ── Features 2 (light grid, no icons) ───────────────────────────────────── */

.lawn-features2 {
  background: #f7f7f7;
  padding: 56px 28px 88px;
}

@media (min-width: 1024px) {
  .lawn-features2 {
    padding: 56px 64px 88px;
  }
}
.features-break { display: inline; }
@media (min-width: 600px) {
  .features-break { display: none; }
}

.lawn-features2__heading {
  margin: 0 auto 64px;
  max-width: 900px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(1.375rem, 3.5vw, 2.25rem);
}
.lawn-feature-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  max-width: 1240px;
}
.lawn-feature-item h3 {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}
.lawn-feature-item p {
  margin: 0;
  line-height: 1.3;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
}
@media (min-width: 900px) {
  .lawn-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .lawn-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1600px) {
  .lawn-feature-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ── Dark footer variant (matches Figma "Footer") ────────────────────────── */

.rl-footer--dark {
  background: #0b0d0f;
  border-top: 1px solid rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  padding: 128px 24px 160px;
  position: relative;
}
.lawn-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.lawn-footer__logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lawn-footer__logo {
  width: 52px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.lawn-footer__brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.rl-footer--dark .rl-footer__copy {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  margin: 0;
}
.lawn-footer__links {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lawn-footer__links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
}
.lawn-footer__links a:hover {
  color: #fff;
}
