/*
Theme Name: Elevamed Child
Theme URI: https://elevamed.com.br
Description: Tema filho Elevamed — Marketing médico especializado
Author: Elevamed
Template: generatepress
Version: 1.0.0
Text Domain: elevamed
*/

/* ============================================
   ELEVAMED DESIGN SYSTEM
   Posicionar → Atrair → Converter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --color-forest:     #1B3A2D;
  --color-forest-mid: #2D5C42;
  --color-forest-light: #3D7A58;
  --color-gold-dark:  #7A5C10;
  --color-gold-mid:   #C9A84C;
  --color-gold-light: #EDD98A;
  --color-cream:      #FAF8F3;
  --color-white:      #FFFFFF;
  --color-text:       #1A1A1A;
  --color-text-muted: #5A5A5A;
  --color-border:     #E8E2D4;

  /* Gold Gradient (canonical) */
  --gradient-gold: linear-gradient(135deg, #7A5C10 0%, #C9A84C 50%, #EDD98A 100%);
  --gradient-gold-text: linear-gradient(135deg, #7A5C10, #C9A84C, #EDD98A);
  --gradient-hero: linear-gradient(160deg, #1B3A2D 0%, #0D2419 100%);
  --gradient-section: linear-gradient(180deg, #FAF8F3 0%, #FFFFFF 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;

  /* Shadow */
  --shadow-card: 0 4px 24px rgba(27,58,45,0.08);
  --shadow-card-hover: 0 12px 48px rgba(27,58,45,0.16);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
}

/* ============================================
   BASE RESET
   ============================================ */

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-forest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

/* CORREÇÃO: p sem color fixada — herda do contexto (Elementor ou tema) */
p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: inherit;
}

/* Cor padrão de texto corrida fora do Elementor */
.entry-content p,
.site-content p {
  color: var(--color-text-muted);
}

.text-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white { color: var(--color-white) !important; }
.text-forest { color: var(--color-forest) !important; }
.text-center { text-align: center; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.section-lg { padding: var(--space-2xl) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-forest);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(201,168,76,0.5);
}

.btn-secondary:hover {
  border-color: var(--color-gold-mid);
  background: rgba(201,168,76,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
}

.btn-outline:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(27,58,45,0.08);
}

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

.site-logo img { height: 40px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-forest);
}
.site-logo .logo-text span {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.current { color: var(--color-forest); background: var(--color-cream); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-forest);
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    flex-direction: column;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a { display: block; padding: 0.875rem 1rem; border-radius: var(--radius-md); }
  .header-cta .btn:not(.btn-primary) { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61,122,88,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--color-gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.hero h1 em {
  font-style: italic;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header.centered p { margin: 0 auto; }

/* ============================================
   METHOD / PILLAR CARDS
   ============================================ */

.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.pillar-card:hover::before { opacity: 1; }

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-forest);
}

.pillar-card p { font-size: 0.95rem; }

/* ============================================
   AUDIENCE TABS
   ============================================ */

.audience-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--color-cream);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  width: fit-content;
  margin: 0 auto 3rem;
}

.audience-tab {
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
}

.audience-tab.active {
  background: var(--color-white);
  color: var(--color-forest);
  box-shadow: var(--shadow-card);
}

.audience-content { display: none; }
.audience-content.active { display: block; }

/* ============================================
   RESULT CARDS / CASES
   ============================================ */

.result-card {
  background: var(--color-forest);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  border-radius: 50%;
}

.result-metric {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.result-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.result-card h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.result-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */

.testimonial-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.star { color: var(--color-gold-mid); font-size: 1rem; }

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-forest);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-forest);
}

.author-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--color-forest-light); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--color-gold-mid);
}

.faq-item.open .faq-icon {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-gold-mid);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================
   LEAD FORM / CTA SECTION
   ============================================ */

.cta-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent);
  border-radius: 50%;
}

.cta-content { position: relative; z-index: 2; }

.lead-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 520px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold-mid);
  background: rgba(255,255,255,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group select option { background: var(--color-forest); color: white; }

.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.process-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold-mid);
  font-size: 1.2rem;
  font-weight: 700;
}

.process-step:last-child::after { display: none; }

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-forest);
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-gold);
}

.process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--color-forest);
}

.process-step p { font-size: 0.875rem; }

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table th:first-child { background: var(--color-cream); color: var(--color-text-muted); }
.comparison-table th.elevamed { background: var(--color-forest); color: var(--color-gold-mid); }
.comparison-table th.competitor { background: #F0F0F0; color: #888; }

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(250,248,243,0.5); }

.check { color: var(--color-forest-light); font-weight: 700; }
.cross { color: #D94F4F; }

/* ============================================
   BLOG / CONTENT CARDS
   ============================================ */

.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.post-card-image {
  aspect-ratio: 16/9;
  background: var(--color-cream);
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-image img { transform: scale(1.04); }

.post-card-body { padding: 1.5rem; }

.post-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-mid);
  margin-bottom: 0.5rem;
}

.post-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.post-card p { font-size: 0.875rem; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

#site-footer {
  background: var(--color-forest);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.footer-logo span {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-mid);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--color-white); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.proof-bar {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  overflow: hidden;
}

.proof-bar-track {
  display: flex;
  gap: 3rem;
  animation: scroll-track 30s linear infinite;
  width: max-content;
}

.proof-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold-mid);
  flex-shrink: 0;
}

@keyframes scroll-track {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   UTILITY
   ============================================ */

.bg-forest { background: var(--color-forest); }
.bg-cream { background: var(--color-cream); }
.bg-white { background: var(--color-white); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

.wp-block-group { margin: 0; }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }

/* Gutenberg compatibility */
.entry-content > * + * { margin-top: 1.5rem; }