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

:root {
  --cream: #FAF8F5;
  --warm-white: #FFFFFF;
  --sand: #F0EBE3;
  --clay: #D4C5B2;
  --charcoal: #1A1A1A;
  --graphite: #2D2D2D;
  --slate: #5A5A5A;
  --muted: #8A8A8A;
  --accent: #C45D3E;
  --accent-soft: #E8734F;
  --accent-glow: rgba(196, 93, 62, 0.08);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ NAVIGATION ═══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}
nav.scrolled { padding: 0.9rem 3rem; box-shadow: 0 1px 30px rgba(0,0,0,0.04); }
.nav-logo { font-family: var(--serif); font-size: 1.35rem; color: var(--charcoal); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: var(--slate); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--charcoal) !important; color: var(--cream) !important; padding: 0.6rem 1.5rem; border-radius: 100px; font-size: 0.85rem !important; font-weight: 500; transition: all 0.3s ease !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

/* ═══════════ HERO ═══════════ */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(196,93,62,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: floatOrb 8s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,197,178,0.3) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: floatOrb 10s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -20px) scale(1.05); } 66% { transform: translate(-20px, 15px) scale(0.95); } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; background: var(--warm-white); border: 1px solid rgba(0,0,0,0.06); border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--slate); margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--charcoal); max-width: 800px; opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--slate); max-width: 540px; line-height: 1.7; margin-top: 1.75rem; font-weight: 300; opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.75rem; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: var(--charcoal); color: var(--cream); border: none; border-radius: 100px; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.35s ease; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,93,62,0.2); }
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: transparent; color: var(--charcoal); border: 1.5px solid rgba(0,0,0,0.12); border-radius: 100px; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.35s ease; }
.btn-secondary:hover { border-color: var(--charcoal); background: var(--warm-white); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--clay), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════ PROOF BAR ═══════════ */
.proof-bar { padding: 3rem 2rem; display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); background: var(--warm-white); }
.proof-item { text-align: center; }
.proof-item .number { font-family: var(--serif); font-size: 2rem; color: var(--charcoal); letter-spacing: -0.03em; transition: color 0.3s; }
.proof-item:hover .number { color: var(--accent); }
.proof-item .label { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ═══════════ SECTION SHARED ═══════════ */
section { padding: 7rem 2rem; }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--accent); margin-bottom: 1.5rem; }
.section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--accent); }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--charcoal); max-width: 600px; }
.section-desc { color: var(--slate); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin-top: 1.25rem; font-weight: 300; }

/* ═══════════ SERVICES ═══════════ */
.services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-title { margin: 0 auto; }
.services-header .section-desc { margin: 1.25rem auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.service-card { background: var(--warm-white); border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; padding: 2.5rem; transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); border-color: rgba(196,93,62,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; background: var(--accent-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.35s ease; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: all 0.35s ease; }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon svg { stroke: #fff; transform: scale(1.1); }
.service-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.service-card p { color: var(--slate); font-size: 0.92rem; line-height: 1.65; font-weight: 300; }

/* ═══════════ PROCESS ═══════════ */
.process { background: var(--warm-white); }
.process-wrapper { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.process-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { font-family: var(--serif); font-size: 2.5rem; color: var(--clay); line-height: 1; min-width: 40px; transition: all 0.4s ease; }
.step:hover .step-num { color: var(--accent); transform: translateX(4px); }
.step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--charcoal); }
.step p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ═══════════ WORK ═══════════ */
.work { background: var(--charcoal); color: var(--cream); }
.work .section-label { color: var(--accent-soft); }
.work .section-label::before { background: var(--accent-soft); }
.work .section-title { color: var(--cream); }
.work .section-desc { color: rgba(255,255,255,0.5); }
.work-header { text-align: center; margin-bottom: 4rem; }
.work-header .section-title { margin: 0 auto; }
.work-header .section-desc { margin: 1.25rem auto 0; }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.work-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 2.25rem; transition: all 0.4s ease; }
.work-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(196,93,62,0.3); transform: translateY(-3px); }
.work-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-soft); font-weight: 600; margin-bottom: 1rem; }
.work-card h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--cream); }
.work-card p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; font-weight: 300; }
.work-result { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.82rem; color: var(--accent-soft); font-weight: 500; }

/* ═══════════ FEATURED ARTICLES ═══════════ */
.articles { background: var(--cream); }
.articles-header { text-align: center; margin-bottom: 3.5rem; }
.articles-header .section-title { margin: 0 auto; }
.articles-header .section-desc { margin: 1.25rem auto 0; }
.articles-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }
.article-group-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 0.75rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--accent); display: inline-block; }
.article-row { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); text-decoration: none; color: inherit; transition: all 0.3s ease; }
.article-row:hover { padding-left: 10px; }
.article-row:hover .article-row-title { color: var(--accent); }
.article-row:hover .article-row-arrow { opacity: 1; transform: translateX(0); }
.article-row-title { font-family: var(--serif); font-size: 1rem; color: var(--charcoal); line-height: 1.35; flex: 1; transition: color 0.3s; letter-spacing: -0.01em; }
.article-row-source { font-size: 0.68rem; font-weight: 500; color: var(--muted); flex-shrink: 0; white-space: nowrap; letter-spacing: 0.02em; }
.article-row-arrow { flex-shrink: 0; opacity: 0; transform: translateX(-6px); transition: all 0.3s ease; color: var(--accent); font-size: 0.85rem; }
.articles-toggle { text-align: center; margin-top: 2.5rem; }
.toggle-btn { padding: 0.65rem 1.8rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 100px; background: var(--warm-white); font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--slate); cursor: pointer; transition: all 0.3s ease; }
.toggle-btn:hover { border-color: var(--charcoal); color: var(--charcoal); transform: translateY(-1px); }
.article-row.extra { display: none; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials { background: var(--warm-white); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-title { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--cream); border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; padding: 2.5rem; position: relative; transition: all 0.4s ease; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.05); }
.testimonial-card .quote-mark { font-family: var(--serif); font-size: 4rem; color: var(--accent); opacity: 0.2; line-height: 1; margin-bottom: 0.5rem; }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.7; color: var(--graphite); font-weight: 300; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 0.9rem; color: var(--accent); }
.author-info .name { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.author-info .role { font-size: 0.75rem; color: var(--muted); }

/* ═══════════ PRICING ═══════════ */
.pricing { background: var(--cream); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-title { margin: 0 auto; }
.pricing-header .section-desc { margin: 1.25rem auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: var(--warm-white); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 2rem 2rem 2.25rem; transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.pricing-card.featured { border: 2px solid var(--accent); }
.pricing-card.featured::after { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap; }
.pricing-type { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.5rem; }
.pricing-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--charcoal); margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.pricing-card .price { font-family: var(--serif); font-size: 1.8rem; color: var(--charcoal); margin: 0.75rem 0 1.25rem; letter-spacing: -0.03em; }
.pricing-card .price span { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; flex: 1; }
.pricing-features li { font-size: 0.85rem; color: var(--slate); font-weight: 300; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.45; }
.pricing-features li::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%; background: var(--accent-glow); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C45D3E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.pricing-card-custom { border-style: dashed; border-color: rgba(0,0,0,0.12); }
.pricing-card-custom .price { color: var(--accent); font-size: 1.5rem; }
.pricing-cta { display: block; text-align: center; padding: 0.75rem 1.5rem; border-radius: 100px; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.35s ease; cursor: pointer; }
.pricing-cta-outline { border: 1.5px solid rgba(0,0,0,0.12); color: var(--charcoal); background: transparent; }
.pricing-cta-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }
.pricing-cta-fill { border: 1.5px solid var(--accent); background: var(--accent); color: #fff; }
.pricing-cta-fill:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.pricing-note { text-align: center; margin-top: 2rem; font-size: 0.82rem; color: var(--muted); font-weight: 300; }

/* ═══════════ CTA ═══════════ */
.cta-section { background: var(--cream); text-align: center; padding: 8rem 2rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(196,93,62,0.04) 0%, transparent 65%); border-radius: 50%; pointer-events: none; animation: floatOrb 12s ease-in-out infinite; }
.cta-section .section-title { margin: 0 auto 1.25rem; max-width: 550px; }
.cta-section .section-desc { margin: 0 auto 2.5rem; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--charcoal); color: rgba(255,255,255,0.4); padding: 3.5rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 0.78rem; width: 100%; text-align: center; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }

/* ═══════════ ANIMATIONS ═══════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-children > :nth-child(1) { transition-delay: 0s; }
.stagger-children > :nth-child(2) { transition-delay: 0.08s; }
.stagger-children > :nth-child(3) { transition-delay: 0.16s; }
.stagger-children > :nth-child(4) { transition-delay: 0.24s; }
.stagger-children > :nth-child(5) { transition-delay: 0.32s; }
.stagger-children > :nth-child(6) { transition-delay: 0.4s; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) { .process-wrapper { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .menu-toggle { display: flex; }
  .hero { padding: 7rem 1.5rem 3rem; min-height: 90vh; }
  .hero-actions { flex-direction: column; align-items: center; }
  .proof-bar { gap: 2rem; padding: 2rem 1rem; }
  .proof-item .number { font-size: 1.6rem; }
  section { padding: 4.5rem 1.5rem; }
  .services-grid, .work-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 1.5rem; flex-direction: column; text-align: center; }
}