:root {
    --accent: #D4AF37;
    --accent-soft: rgba(212, 175, 55, 0.15);
    --on-accent: #1f1503;
    --bg: #0A0A0A;
    --surface: #1A1A1A;
    --outline: #333333;
    --text: #e5e2e1;
    --text-dim: #c8c6c5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

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

a {
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 80px 0;
}

.glass-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--outline);
    border-top-color: #444;
    border-radius: 1rem;
}

.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    padding: 16px 32px;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.btn-primary {
    background: linear-gradient(180deg, #e8c96a 0%, var(--accent) 100%);
    color: var(--on-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid #4a4a4a;
}

.btn-ghost:hover {
    border-color: var(--accent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 9999px;
    padding: 8px 20px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #fff;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    opacity: .8;
    max-width: 560px;
    margin: 0 auto 56px;
}

.accent {
    color: var(--accent);
}

/* ---------- Nav ---------- */
nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--outline);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.wordmark {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: .02em;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.wordmark span {
    color: var(--accent);
}

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

.nav-logo {
    height: 42px;
    width: auto;
    border-radius: 8px;
    display: block;
}

.nav-links {
    display: none;
    gap: 28px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    transition: color .2s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    padding: 10px 20px;
    font-size: .85rem;
}

@media (max-width: 480px) {
    .nav-cta {
        display: none;
    }
}

@media (min-width: 1000px) {
    .nav-links {
        display: flex;
    }
}

/* ---------- Language toggle ---------- */
.lang-toggle {
    display: flex;
    border: 1px solid var(--outline);
    border-radius: 9999px;
    overflow: hidden;
    background: var(--surface);
}

.lang-btn {
    background: none;
    border: none;
    font-size: 1.05rem;
    line-height: 1;
    padding: 6px 10px;
    cursor: pointer;
    filter: grayscale(.7);
    opacity: .75;
    transition: background .2s, filter .2s, opacity .2s;
}

.lang-btn:hover {
    filter: none;
    opacity: 1;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--on-accent);
    filter: none;
    opacity: 1;
}

/* ---------- Hero ---------- */
header.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
}

.hero-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 42%;
    background: url('hero.jpg') 50% 12% / cover no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #0A0A0A 0%, rgba(10, 10, 10, 0.55) 35%, rgba(10, 10, 10, 0.15) 70%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.95) 96%);
}

@media (max-width: 767px) {
    .hero-bg {
        left: 0;
    }

    .hero-bg::after {
        background:
            linear-gradient(90deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.55) 100%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.95) 96%);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 48px 0;
}

.hero h1 {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 24px 0 20px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-left: -10px;
}

.avatars span:first-child {
    margin-left: 0;
}

.avatars span.more {
    background: var(--accent);
    color: var(--on-accent);
}

.social-proof p {
    margin: 0;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
}

.social-proof small {
    color: var(--accent);
    letter-spacing: .15em;
}

/* ---------- Cards ---------- */
.cards-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .cards-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-card {
    padding: 32px;
    text-align: center;
    transition: transform .3s, border-color .3s;
}

.icon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.icon-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.icon-card p {
    font-size: .9rem;
    color: var(--text-dim);
    opacity: .8;
}

/* ---------- Method ---------- */
.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .method-grid {
        grid-template-columns: 1.4fr 1fr;
    }
}

.method-card {
    padding: 40px;
    border-radius: 1rem;
    background: var(--surface);
    border: 1px solid var(--outline);
}

.method-card.accent-border {
    border-left: 3px solid var(--accent);
}

.method-card .kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.method-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.method-card p {
    color: var(--text-dim);
    font-size: .95rem;
}

/* ---------- About (Quem sou eu) ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1.3fr;
    }
}

.about-photo {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--outline);
}

.about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
}

.about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 55%, rgba(10, 10, 10, 0.85) 100%);
}

.about-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 16px 0 20px;
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.stat {
    border-left: 2px solid var(--accent);
    padding-left: 14px;
}

.stat b {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.stat span {
    font-size: .78rem;
    color: var(--text-dim);
    opacity: .8;
}

.cert-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 28px 0 14px;
}

.cert-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.cert-list li {
    display: flex;
    flex-direction: column;
    padding-left: 22px;
    position: relative;
}

.cert-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.cert-list b {
    color: #fff;
    font-size: .92rem;
}

.cert-list small {
    font-size: .78rem;
    color: var(--text-dim);
    opacity: .75;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

.ig-link:hover {
    color: var(--accent);
}

.ig-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

/* ---------- Testimonials ---------- */
.testimonial {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

/* Carousel (marquee, pauses on hover) */
.carousel {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: marquee 90s linear infinite;
}

.carousel:hover .carousel-track,
.carousel:focus-within .carousel-track {
    animation-play-state: paused;
}

.carousel-group {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.t-card {
    width: 320px;
    flex-shrink: 0;
}

.t-card .ba-single {
    height: 300px;
}

.t-card .ba-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@media (prefers-reduced-motion: reduce) {
    .carousel {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .carousel-track {
        animation: none;
    }
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.ba-single {
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--outline);
}

.ba-single img {
    width: 100%;
    display: block;
}

.ba-photo {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: .75rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, #2a2a2a 0%, #1c1b1b 70%),
        var(--surface);
    border: 1px dashed #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-photo .ph {
    font-size: .7rem;
    color: var(--text-dim);
    opacity: .5;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ba-photo .tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 1;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 9999px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--text-dim);
}

.ba-photo .tag.after {
    background: var(--accent);
    color: var(--on-accent);
}

.testimonial blockquote {
    font-size: .95rem;
    color: var(--text-dim);
    font-style: italic;
    flex: 1;
    margin-bottom: 16px;
}

.testimonial .who {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.testimonial .who b {
    color: #fff;
    font-size: .95rem;
}

.testimonial .who span {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ---------- Diagnostic ---------- */
.diag-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--outline);
    transition: background .3s;
}

.dot.active {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.bar {
    width: 48px;
    height: 2px;
    background: var(--outline);
}

.diag-step {
    padding: 32px;
}

.diag-step h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 24px;
}

.diag-options {
    display: grid;
    gap: 12px;
}

.diag-option {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: left;
    color: var(--text);
    background: transparent;
    border: 1px solid #4a4a4a;
    border-radius: .75rem;
    padding: 16px 20px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.diag-option:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.diag-result {
    text-align: center;
    padding: 40px 32px;
}

.diag-result .emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.diag-result h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.diag-result p {
    color: var(--text-dim);
    margin-bottom: 28px;
}

.hidden {
    display: none;
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.tier {
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tier.highlight {
    border: 2px solid var(--accent);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    background: rgba(26, 26, 26, 0.9);
}

.tier .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--on-accent);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 16px;
    border-radius: 9999px;
    white-space: nowrap;
}

.tier h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 6px;
}

.tier .tagline {
    font-size: .85rem;
    color: var(--text-dim);
    opacity: .7;
    margin-bottom: 20px;
}

.tier .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.tier .freq {
    font-size: .85rem;
    color: var(--text-dim);
    opacity: .6;
    margin-bottom: 24px;
}

.tier ul {
    list-style: none;
    text-align: left;
    display: grid;
    gap: 12px;
    align-content: start;
    margin-bottom: 32px;
    flex: 1;
}

.tier li {
    display: flex;
    gap: 10px;
    font-size: .9rem;
    align-items: flex-start;
}

.tier li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---------- Includes ---------- */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
}

@media (min-width: 768px) {
    .includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.include-card {
    padding: 28px;
    text-align: left;
}

.include-card .icon-circle {
    margin: 0 0 18px;
    width: 52px;
    height: 52px;
    border-radius: .75rem;
}

.include-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.include-card p {
    font-size: .85rem;
    color: var(--text-dim);
    opacity: .8;
}

/* ---------- Articles page ---------- */
.articles-page {
    padding-top: 140px;
    min-height: 80vh;
}

.tab-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: 9999px;
    padding: 10px 22px;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.tab-btn:hover {
    border-color: var(--accent);
    color: #fff;
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--on-accent);
}

.article-pane {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px;
}

.article-pane time {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
}

.article-pane h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin: 12px 0 20px;
}

.article-pane p {
    color: var(--text-dim);
    margin-bottom: 16px;
}

.article-pane p:last-child {
    margin-bottom: 0;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
}

.back-home:hover {
    color: var(--accent);
}

.subpage {
    padding-top: 140px;
}

/* ---------- Media grid ---------- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 900px) {
    .media-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-tile {
    display: block;
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--outline);
}

.media-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease;
}

.media-tile:hover img {
    transform: scale(1.05);
}

.follow-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
    background: var(--surface);
    transition: border-color .2s, background .2s;
}

.follow-tile:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.follow-tile svg {
    width: 42px;
    height: 42px;
    stroke: var(--accent);
}

.follow-tile b {
    color: #fff;
    font-size: .95rem;
}

.follow-tile span {
    color: var(--text-dim);
    font-size: .85rem;
}

/* ---------- Partners grid ---------- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.partner-tile {
    width: calc(50% - 8px);
}

@media (min-width: 900px) {
    .partner-tile {
        width: 290px;
    }
}

.partner-tile {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--outline);
    transition: border-color .2s, transform .3s;
}

.partner-tile:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.partner-tile img {
    width: 100%;
    display: block;
}

/* ---------- App section ---------- */
.app-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
}

.app-card .eyebrow {
    margin-bottom: 20px;
}

.app-card h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.app-card>p {
    color: var(--text-dim);
    opacity: .85;
    max-width: 520px;
    margin: 0 auto 32px;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: #000;
    border: 1px solid #4a4a4a;
    border-radius: .75rem;
    text-decoration: none;
    text-align: left;
    transition: border-color .2s, transform .2s;
}

.store-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.store-btn svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    flex-shrink: 0;
}

.store-btn small {
    display: block;
    font-size: .62rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 1.3;
}

.store-btn b {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.2;
}

/* ---------- Social buttons ---------- */
.social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--outline);
    border-radius: 9999px;
    background: var(--surface);
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s, transform .2s;
}

.social-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
}

.social-btn svg.filled {
    fill: var(--accent);
    stroke: none;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-visual {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 380px;
}

.contact-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-visual .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 30%, rgba(10, 10, 10, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

.contact-visual h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
}

.contact-visual h3 span {
    color: var(--accent);
}

.contact-visual p {
    color: var(--text-dim);
    font-size: .95rem;
    margin-top: 10px;
}

.contact-form {
    padding: 36px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.contact-form>p {
    font-size: .9rem;
    color: var(--text-dim);
    opacity: .8;
    margin-bottom: 28px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.field input,
.field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    background: var(--surface);
    border: 1px solid #4a4a4a;
    border-radius: .75rem;
    padding: 14px 18px;
    transition: border-color .2s, box-shadow .2s;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    outline: none;
}

.phone-row {
    display: flex;
    gap: 10px;
}

.phone-row .prefix {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: var(--surface);
    border: 1px solid #4a4a4a;
    border-radius: .75rem;
    color: var(--text-dim);
    font-size: .95rem;
}

.phone-row input {
    flex: 1;
}

.form-note {
    font-size: .78rem;
    color: var(--text-dim);
    opacity: .6;
    margin-top: 14px;
    text-align: center;
}

.wa-icon {
    width: 20px;
    height: 20px;
    vertical-align: -4px;
    margin-right: 8px;
    fill: currentColor;
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--outline);
    padding: 40px 16px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

footer .wordmark {
    font-size: 1rem;
}

.footer-logo {
    width: 64px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-size: .82rem;
}

.footer-links a {
    color: var(--text-dim);
    opacity: .7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

footer .copy {
    font-size: .78rem;
    color: var(--text-dim);
    opacity: .5;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
