/* =========================================================
   MWM Soluções — Landing
   Design inspirado na estética Claude: paleta terrosa/cream,
   serifa expressiva, minimalismo denso e pontual.
   ========================================================= */

:root {
    /* Warm cream base (Claude feel) com leve deslocamento verde */
    --cream: #F1EEE4;
    --cream-2: #E7E2D3;
    --paper: #F8F5EC;

    /* Ink principal: verde-floresta muito profundo (em vez de marrom) */
    --ink: #0F2A1E;
    --ink-2: #1A3A2A;
    --muted: #5C6B5F;
    --line: #D6CFBE;

    /* Acento primário: verde esmeralda vibrante (inspirado em MWM Capital) */
    --accent: #16A34A;          /* emerald 600 */
    --accent-2: #0F7A37;         /* emerald 700 — hover/depth */
    --accent-3: #22C55E;         /* emerald 500 — glow/vibrant */
    --accent-soft: #DCF3E3;      /* emerald 50 — tints */
    --accent-ink: #052E18;       /* leaf dark */

    /* Acento secundário para vibração e contraste (cobre/dourado) */
    --gold: #E0A23C;
    --gold-soft: #F7E6C5;

    /* Seções escuras: deep forest navy */
    --deep: #0A1C14;
    --deep-2: #0E2A1E;

    --olive: #4F6B3E;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(15, 42, 30, 0.05), 0 2px 8px rgba(15, 42, 30, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 42, 30, 0.1), 0 2px 6px rgba(15, 42, 30, 0.06);
    --shadow-lg: 0 24px 60px rgba(15, 42, 30, 0.14);
    --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent); color: #fff; }

/* Grain overlay */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: .32;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.16 0 0 0 0 0.11 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 32px;
    margin: 0 auto;
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0;
    font-variation-settings: "opsz" 48;
}

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(92deg, var(--accent) 0%, var(--accent-3) 60%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-2);
    padding: 6px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(22, 163, 74, 0.18);
    border-radius: 999px;
    margin-bottom: 24px;
}
.section-tag::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-3);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.section-tag.light {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.28);
    color: var(--accent-soft);
}

.section-title {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
    max-width: 900px;
}
.section-title.light { color: var(--cream); }

.section-lead {
    margin-top: 24px;
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}
.btn-primary svg, .btn-secondary svg { width: 16px; height: 16px; }

.btn-primary {
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 1px 2px rgba(15, 42, 30, 0.08), 0 6px 18px rgba(15, 42, 30, 0.12);
}
.btn-primary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.35);
}
.btn-primary.light {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.32);
}
.btn-primary.light:hover {
    background: var(--accent-2);
    box-shadow: 0 8px 28px rgba(15, 122, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.btn-ghost {
    padding: 10px 18px;
    background: var(--ink);
    color: var(--cream);
    font-size: 14px;
}
.btn-ghost:hover {
    background: var(--accent);
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background: rgba(245, 241, 235, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
    background: rgba(245, 241, 235, 0.88);
    border-bottom-color: var(--line);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.logo em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: currentColor;
}
.logo-mark {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--cream);
    border-radius: 8px;
}
.logo-mark svg { width: 20px; height: 20px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
}
.nav-links a { color: var(--ink-2); transition: color .2s var(--ease); position: relative; }
.nav-links a:not(.btn-ghost):hover { color: var(--accent); }
.nav-links a:not(.btn-ghost)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width .25s var(--ease);
}
.nav-links a:not(.btn-ghost):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 10px; right: 10px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding: 96px 0 120px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
}
.blob-1 {
    width: 680px; height: 680px;
    background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
    top: -220px; right: -140px;
    opacity: .28;
}
.blob-2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: -200px; left: -140px;
    opacity: .16;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 1100px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    padding: 8px 16px 8px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}
.eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-3);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.24);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.24); }
    50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}

.hero-title {
    font-size: clamp(44px, 7vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 400;
    margin: 0 0 28px;
    max-width: 14ch;
}

.hero-sub {
    font-size: clamp(18px, 1.6vw, 21px);
    color: var(--muted);
    max-width: 620px;
    margin: 0 0 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    max-width: 760px;
}
.meta-item { flex: 1; }
.meta-num {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.meta-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    letter-spacing: 0.01em;
}
.meta-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
}

/* =========================================================
   Clients strip
   ========================================================= */
.clients {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 36px 0;
}
.clients-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin: 0 0 16px;
    text-align: center;
}
.clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'Fraunces', serif;
    font-size: clamp(16px, 1.6vw, 22px);
    color: var(--ink-2);
    font-style: italic;
}
.clients-row .sep { color: var(--accent); font-style: normal; }

/* =========================================================
   About
   ========================================================= */
.about { padding: 140px 0 120px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.about-right p {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-pillars {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    border-top: 1px solid var(--line);
}
.about-pillars li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--ink-2);
}
.about-pillars li span {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================================================
   Services
   ========================================================= */
.services {
    padding: 120px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.services-head {
    max-width: 900px;
    margin-bottom: 72px;
}

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

.service-card {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.service-card:hover::before { opacity: .5; }
.service-card > * { position: relative; z-index: 1; }

.service-num {
    position: absolute;
    top: 24px; right: 32px;
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.06em;
}
.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 14px;
    color: var(--accent-2);
    margin-bottom: 28px;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.35);
}

.service-card h3 {
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.service-card p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 24px;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}
.service-card ul li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
    content: "→";
    color: var(--accent);
    font-size: 14px;
}

/* =========================================================
   Highlight (Correspondente bancário)
   ========================================================= */
.highlight {
    padding: 120px 0;
    background: var(--deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(34, 197, 94, 0.28) 0%, transparent 55%),
        radial-gradient(circle at 88% 82%, rgba(224, 162, 60, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(22, 163, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.highlight-left p {
    color: rgba(245, 241, 235, 0.72);
    font-size: 17px;
    line-height: 1.7;
    margin: 28px 0 36px;
    max-width: 480px;
}

.highlight-card {
    background: rgba(245, 241, 235, 0.04);
    border: 1px solid rgba(245, 241, 235, 0.12);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(8px);
}
.hc-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-soft);
    margin-bottom: 20px;
}
.hc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.hc-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 241, 235, 0.08);
    color: var(--cream);
    font-size: 15.5px;
}
.hc-list li:last-child { border-bottom: none; }
.hc-list li span { color: var(--accent-3); font-weight: 500; }
.hc-footer {
    font-size: 13px;
    color: rgba(245, 241, 235, 0.55);
    padding-top: 18px;
    border-top: 1px solid rgba(245, 241, 235, 0.1);
    letter-spacing: 0.02em;
}

/* =========================================================
   Method
   ========================================================= */
.method { padding: 140px 0 120px; }
.method-head { margin-bottom: 72px; max-width: 800px; }
.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step {
    padding: 32px 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.step-index {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.step h4 {
    font-size: 22px;
    margin: 0 0 10px;
}
.step p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   Quote
   ========================================================= */
.quote {
    padding: 80px 0 120px;
}
.quote blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0;
    max-width: 900px;
    font-weight: 400;
    position: relative;
    padding-left: 40px;
    border-left: 3px solid var(--accent);
}
.quote blockquote em {
    font-style: italic;
    background: linear-gradient(92deg, var(--accent) 0%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
}
.quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    color: var(--accent);
    line-height: 0;
    position: absolute;
    top: 28px; left: 8px;
    display: none;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
    padding: 100px 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(34, 197, 94, 0.32) 0%, transparent 55%),
        radial-gradient(circle at 18% 82%, rgba(224, 162, 60, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 20px;
}
.cta-title em { font-style: italic; color: var(--accent); }
.cta-left p {
    color: rgba(245, 241, 235, 0.7);
    font-size: 17px;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 40px;
}
.cta-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 241, 235, 0.1);
    max-width: 460px;
}
.cta-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-soft);
    margin-bottom: 6px;
}
.cta-info a, .cta-info span {
    color: var(--cream);
    font-size: 15px;
}
.cta-info a:hover { color: var(--accent-3); }

.cta-form {
    background: rgba(245, 241, 235, 0.04);
    border: 1px solid rgba(245, 241, 235, 0.12);
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    backdrop-filter: blur(8px);
}
.cta-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.cta-form label.full { grid-column: 1 / -1; }
.cta-form input,
.cta-form select,
.cta-form textarea {
    font-family: inherit;
    font-size: 15px;
    color: var(--cream);
    background: rgba(245, 241, 235, 0.04);
    border: 1px solid rgba(245, 241, 235, 0.16);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    outline: none;
    transition: border-color .2s var(--ease), background .2s var(--ease);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(245, 241, 235, 0.35); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--accent);
    background: rgba(245, 241, 235, 0.06);
}
.cta-form textarea { resize: vertical; min-height: 110px; }
.cta-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23DCF3E3' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.cta-form select option { color: var(--ink); background: var(--cream); }

.btn-primary.full { grid-column: 1 / -1; width: 100%; }

.form-feedback {
    grid-column: 1 / -1;
    display: none;
    padding: 14px 16px;
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.45);
    border-radius: var(--radius-sm);
    color: var(--accent-soft);
    font-size: 14px;
    text-align: center;
}
.form-feedback.show { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: var(--cream);
    padding: 80px 0 36px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}
.footer-brand p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 15px;
    max-width: 320px;
    line-height: 1.65;
}
.logo-footer { margin-bottom: 0; }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-title {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
}
.footer-cols a, .footer-cols span {
    font-size: 14px;
    color: var(--muted);
    transition: color .2s var(--ease);
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.01em;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .container, .nav-inner { padding-left: 24px; padding-right: 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav.open .nav-links {
        display: flex;
        position: absolute;
        top: 100%; left: 16px; right: 16px;
        flex-direction: column;
        align-items: stretch;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }
    .nav.open .nav-links a { padding: 4px 0; }

    .hero { padding: 64px 0 80px; }
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .meta-divider { display: none; }

    .about { padding: 96px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }

    .services { padding: 96px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .highlight { padding: 96px 0; }
    .highlight-grid { grid-template-columns: 1fr; gap: 48px; }

    .method { padding: 96px 0; }
    .method-steps { grid-template-columns: repeat(2, 1fr); }

    .quote { padding: 60px 0 80px; }
    .quote blockquote { padding-left: 24px; }

    .cta { padding: 80px 0; }
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-info { grid-template-columns: 1fr; gap: 20px; }

    .footer-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .hero-title { font-size: 40px; }
    .section-title { font-size: 32px; }
    .service-card { padding: 28px; }
    .cta-form { padding: 24px; grid-template-columns: 1fr; }
    .method-steps { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .clients-row { gap: 12px; }
    .clients-row .sep { display: none; }
}
