:root {
    --bg: #f7f7f4;
    --panel: #ffffff;
    --ink: #0b0b0b;
    --muted: #4a4a45;
    --line: #0e0e0c;
    --soft-line: #dcdcd3;
    --radius: 16px;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    --reveal-distance: 16px;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Epilogue', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ink);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

h1, h2, h3, p, a, button, input, textarea {
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

h1, h2, h3 {
    margin: 0 0 0.5em;
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 1em;
    color: var(--muted);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.74rem;
    color: var(--ink);
    opacity: 0.8;
    margin: 0 0 0.8rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--ink);
    color: #fdfdfb;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.btn.ghost,
.btn.whatsapp {
    background: transparent;
    color: var(--ink);
}

.btn.ghost:hover,
.btn.whatsapp:hover {
    background: var(--ink);
    color: #fdfdfb;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    background: transparent;
}

.pill-btn:hover {
    background: var(--ink);
    color: #fdfdfb;
}

.section-header {
    max-width: 940px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header.align-left {
    text-align: left;
    margin-left: 0;
}

main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2.2rem 4vw 4rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 4vw;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header.compact {
    padding: 0.85rem 4vw;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: grayscale(100%);
}

.brand-mark.small {
    width: 32px;
    height: 32px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.brand-primary {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.84rem;
    color: var(--muted);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid transparent;
}

.nav-links a:hover {
    border-color: var(--line);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--line);
}

.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition: opacity 0.5s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--panel);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border: 1px dashed var(--soft-line);
    border-radius: calc(var(--radius) - 4px);
    pointer-events: none;
}

.flow-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.04) 0,
        rgba(0, 0, 0, 0.04) 1px,
        transparent 1px,
        transparent 28px
    );
}

.flow-bg .orb {
    display: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 3.4vw, 3.3rem);
    line-height: 1.1;
}

.lede {
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.3rem 0 0.6rem;
}

.hero-media {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fefefe;
    max-width: 520px;
    aspect-ratio: 4 / 5;
    box-shadow: 10px 10px 0 #0b0b0b;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 0.45rem 0.85rem;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
}

.hero-badge {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: #fdfdfb;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.pillar-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    min-height: 160px;
    box-shadow: 8px 8px 0 #0b0b0b0f;
    transition: transform 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
}

.snapshot {
    display: grid;
    gap: 1.4rem;
}

.process-band {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    display: grid;
    gap: 1.2rem;
    box-shadow: var(--shadow);
}

.process-header h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.steps li {
    background: #fdfdfb;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.4rem;
}

.step-label {
    display: block;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.process-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.collab {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.collab-card {
    margin: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 6px 6px 0 #0b0b0b0f;
}

.collab-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fafafa;
}

.collab-card figcaption {
    padding: 0.9rem 1rem 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.founder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.founder-copy {
    max-width: 520px;
    text-align: center;
    display: grid;
    gap: 1rem;
}

.founder-details {
    display: grid;
    gap: 0.5rem;
    justify-items: center;
}

.founder-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fdfdfb;
    margin: 0;
    max-width: 420px;
    box-shadow: 8px 8px 0 #0b0b0b0f;
}

.founder-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.founder-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
    color: #fdfdfb;
    text-align: center;
}

.founder-overlay p {
    color: #fdfdfb;
    margin: 0.5rem 0 0;
}

.cta-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
    padding: 1.6rem;
    background: var(--panel);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.cta-actions {
    display: grid;
    gap: 1rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-weight: 700;
}

.contact-form {
    background: #fdfdfb;
    padding: 1.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--ink);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.9rem;
    color: var(--ink);
    font-family: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status {
    min-height: 1.2em;
    color: var(--ink);
    font-weight: 700;
}

.site-footer {
    padding: 2.4rem 4vw 3rem;
    border-top: 1px solid var(--line);
    background: #ffffff;
    display: grid;
    gap: 0.7rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page layouts */
.page-hero {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.page-hero .eyebrow {
    margin-bottom: 0.5rem;
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.page-hero .hero-actions {
    margin-top: 1rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.brand-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.6rem;
    box-shadow: 6px 6px 0 #0b0b0b0f;
}

.brand-card.muted-card {
    background: #fdfdfb;
}

.brand-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.brand-card:hover::after {
    opacity: 1;
}

.brand-card h3 {
    margin: 0;
}

.brand-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-weight: 700;
    color: var(--muted);
}

.brand-meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.85rem;
}

.brand-link {
    font-weight: 700;
}

.collab-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collab-hero {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.collab-hero-copy {
    display: grid;
    gap: 1rem;
}

.collab-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.collab-stats div {
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fdfdfb;
    min-width: 120px;
}

.stat-number {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.stat-label {
    font-weight: 700;
    color: var(--ink);
}

.feature {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem;
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.feature-copy {
    display: grid;
    gap: 0.8rem;
}

.feature-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
}

.feature-shot {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fdfdfb;
}

.feature-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.feature-shot.tall img {
    aspect-ratio: 3 / 4;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.bio-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    display: grid;
    gap: 0.8rem;
    box-shadow: 6px 6px 0 #0b0b0b0f;
}

.contact-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}

.contact-panel .contact-links {
    font-size: 1.05rem;
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.in-view {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero::before {
        display: none;
    }
}

@media (max-width: 960px) {
    .nav-links {
        position: absolute;
        top: 74px;
        right: 4vw;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        display: none;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero::before {
        inset: 0.8rem;
    }
}
