/* Local Lens — Premium Landing Page Styles */

:root {
  --color-cream: #faf8f4;
  --color-espresso: #1c1410;
  --color-sienna: #8b5e3c;
  --color-sienna-light: #b07a50;
  --color-sand: #d4c5b2;
  --color-sage: #7a8c6e;
  --color-sage-light: #a3b598;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-espresso);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 20, 16, 0.15) 0%,
    rgba(28, 20, 16, 0.55) 60%,
    rgba(28, 20, 16, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 6vw, 80px) clamp(64px, 10vw, 96px);
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s ease-out 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-sienna);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease-out 0.9s forwards;
}

.hero-cta:hover {
  background: var(--color-sienna-light);
  transform: translateY(-2px);
}

.hero-coverage {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.coverage-pill {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

.coverage-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ── SECTION COMMON ────────────────────────────────────────── */

.section {
  padding: clamp(60px, 10vw, 100px) clamp(24px, 6vw, 80px);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sienna);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-espresso);
  line-height: 1.15;
  max-width: 680px;
}

/* ── SERVICES ──────────────────────────────────────────────── */

.services-section { background: var(--color-white); }

.services-intro {
  max-width: 580px;
  color: #5a504a;
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  border: 1px solid var(--color-sand);
  border-radius: 4px;
  padding: 36px 32px;
  background: var(--color-cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,20,16,0.08);
  border-color: var(--color-sienna-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-espresso);
  stroke-width: 1.8;
  fill: none;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #6a5e56;
  line-height: 1.7;
}

/* ── WHY LOCAL LENS ────────────────────────────────────────── */

.why-section {
  background: var(--color-espresso);
  color: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.why-item {}

.why-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-sienna);
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ── SOCIAL PROOF ──────────────────────────────────────────── */

.proof-section { background: var(--color-cream); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: 4px;
  padding: 36px 32px;
}

.testimonial-stars {
  color: var(--color-sienna);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-espresso);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.85rem;
  color: #7a6e68;
  font-weight: 500;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-sand);
}

.logo-placeholder {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sand);
  border: 1px solid var(--color-sand);
  padding: 10px 20px;
  border-radius: 2px;
  opacity: 0.5;
}

/* ── FOOTER ─────────────────────────────────────────────────── */

.footer {
  background: var(--color-espresso);
  padding: clamp(48px, 8vw, 72px) clamp(24px, 6vw, 80px);
  color: var(--color-white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-sand);
  max-width: 480px;
  line-height: 1.4;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact:hover { color: var(--color-white); }

.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero-content { padding-bottom: 48px; }
  .hero-coverage { flex-direction: column; align-items: flex-start; gap: 12px; }
  .coverage-divider { display: none; }
  .footer-bottom { flex-direction: column; }
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}