/* SEO landing pages — homepage-style hero + editorial layout */

:root {
  --hero-header-olive: #3a4030;
}

body.seo-landing-body #main-nav {
  display: none !important;
}

.seo-landing-page {
  padding-top: 0 !important;
  background: var(--warm-white);
}

/* ─── Hero ─── */
.seo-landing-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

.seo-landing-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.seo-landing-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.38);
}

.seo-landing-hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(139, 100, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.seo-landing-hero .hero-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 200;
  overflow: visible;
  background: var(--hero-header-olive);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-landing-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 48px;
  margin-top: calc(var(--nav-h) + 60px);
}

.seo-landing-hero .hero-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.seo-landing-hero .hero-tagline {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  max-width: 520px;
}

.seo-landing-hero .hero-tagline-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.seo-landing-hero .hero-tagline h1 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
}

.seo-landing-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
  margin-top: 36px;
}

.seo-landing-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  min-height: 54px;
  padding: 17px 36px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.seo-landing-hero .hero-btn:hover {
  background: #fff;
  color: var(--accent);
}

.seo-landing-hero .hero-btn::after {
  content: '→';
  font-size: 14px;
  line-height: 1;
}

.seo-landing-hero .hero-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.seo-landing-hero .hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.seo-landing-hero .hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.seo-landing-hero .hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
}

.seo-landing-hero .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ─── Intro strip ─── */
.seo-intro-strip {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--light-line);
  background: var(--warm-white);
}

.seo-intro-strip h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.seo-intro-strip p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.seo-intro-strip p:last-of-type {
  margin-bottom: 32px;
}

/* ─── Featured projects ─── */
.seo-landing-page .featured-projects {
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-line);
}

.seo-landing-page .featured-projects .proj-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.seo-landing-page .featured-projects-cta {
  margin-top: 48px;
  text-align: right;
}

/* ─── Body refinements ─── */
.seo-landing-page .seo-body {
  max-width: 1100px;
  padding: 100px 48px;
}

.seo-landing-page .seo-body h2 {
  margin-top: 72px;
  padding-top: 8px;
}

.seo-landing-page .seo-body h2:first-child {
  margin-top: 0;
}

.seo-landing-page .faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
  border-top: 1px solid var(--light-line);
}

.seo-landing-page .cta-band {
  margin-top: 0;
  background: var(--hero-header-olive, #3a4030);
}

@media (max-width: 900px) {
  .seo-landing-hero {
    min-height: 70vh;
  }

  .seo-landing-hero .hero-nav-overlay {
    padding: 0 24px;
  }

  .seo-landing-hero-content {
    padding: 0 24px;
    margin-top: calc(var(--nav-h) + 40px);
  }

  .seo-landing-hero .hero-display {
    font-size: clamp(52px, 14vw, 80px);
  }

  .seo-landing-hero .hero-scroll {
    display: none;
  }

  .seo-intro-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 24px;
  }

  .seo-landing-page .seo-body,
  .seo-landing-page .faq-section {
    padding: 64px 24px;
  }
}
