/* ===== LOCALIFT THEME ===== */

/* Variables */
:root {
  --bg: #FAF7F2;
  --fg: #1A1A18;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #D8F3DC;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --muted: #6B7280;
  --border: #D6D3CE;
  --white: #FFFFFF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.site-header nav a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--green);
  margin-bottom: 24px;
}

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

/* Inbox Mock */
.inbox-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,67,50,0.08);
}

.mock-header {
  background: var(--green);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 80%;
}

.msg.customer {
  align-self: flex-end;
  align-items: flex-end;
}

.msg.ai {
  align-self: flex-start;
  align-items: flex-start;
}

.msg-text {
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.5;
}

.msg.customer .msg-text {
  background: var(--green);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.msg.ai .msg-text {
  background: var(--green-light);
  color: var(--green);
  border-bottom-left-radius: 4px;
}

.msg-time {
  font-size: 0.65rem;
  color: var(--muted);
}

/* ===== WORK ===== */
.work {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--fg);
  margin-bottom: 48px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.work-card {
  padding: 40px;
  border-radius: 0;
}

.work-card.pain { background: #F5F0E8; }
.work-card.gain { background: var(--green); }

.work-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pain .work-label { color: var(--muted); }
.gain .work-label { color: rgba(255,255,255,0.6); }

.work-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-card ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.work-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pain ul li { color: var(--fg); }
.pain ul li::before { background: var(--muted); }

.gain ul li { color: rgba(255,255,255,0.9); }
.gain ul li::before { background: rgba(255,255,255,0.5); }

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.feature {
  padding: 40px;
  background: var(--white);
}

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

.feature h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--green);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.manifesto blockquote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
  font-style: italic;
}

.manifesto-content p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}

.manifesto-content p:last-child { margin-bottom: 0; }

/* ===== CLOSING ===== */
.closing {
  padding: 96px 0;
  background: var(--bg);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero { padding: 56px 0 56px; }
  .work, .features, .manifesto, .closing { padding: 56px 0; }

  .site-header nav { display: none; }
}

@media (max-width: 480px) {
  .feature { padding: 28px; }
  .work-card { padding: 28px; }
}
