
:root {
    --navy-950: #020914;
    --navy-930: #03101f;
    --navy-900: #06182d;
    --navy-860: #081d35;
    --navy-800: #0b2745;
    --gold: #caa052;
    --gold-dark: #a9782e;
    --gold-light: #efd18a;
    --white: #f7f9fb;
    --white-soft: rgba(247,249,251,.72);
    --white-faint: rgba(247,249,251,.12);
    --line: rgba(202,160,82,.38);
    --line-soft: rgba(202,160,82,.22);
    --shadow: 0 26px 80px rgba(0,0,0,.36);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--white-soft);
    background:
        radial-gradient(circle at 78% 8%, rgba(202,160,82,.12), transparent 34rem),
        linear-gradient(180deg, var(--navy-930), var(--navy-950));
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a { color: inherit; text-decoration: none; transition: color .22s ease, transform .22s ease, border-color .22s ease, background .22s ease; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
svg { width: 1.15em; height: 1.15em; stroke: currentColor; fill: none; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round; }

.container {
    width: min(1120px, calc(100% - 68px));
    margin-inline: auto;
}

.screen-reader-text,
.skip-link {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(3,16,31,.70), rgba(3,16,31,.08));
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
    background: rgba(3,16,31,.92);
    border-bottom-color: rgba(202,160,82,.22);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.brand img {
    width: 205px;
    max-height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0,0,0,.48));
}

.main-navigation { margin-left: auto; }

.menu,
.footer-menu,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    position: relative;
    display: inline-flex;
    padding: 7px 0;
    color: rgba(247,249,251,.88);
    font-size: .88rem;
    letter-spacing: .01em;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    transition: width .22s ease;
}

.menu a:hover::after { width: 100%; }

.header-whatsapp,
.outline-btn,
.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .075em;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}

.header-whatsapp:hover,
.outline-btn:hover {
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}

.header-whatsapp svg { width: 18px; height: 18px; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--gold-light);
    cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 21px;
    height: 1px;
    background: currentColor;
    margin: 5px auto;
    transition: transform .22s ease, opacity .22s ease;
}

/* HERO fiel à imagem */
.hero {
    position: relative;
    min-height: 492px;
    display: flex;
    align-items: center;
    padding: 108px 0 58px;
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(3,16,31,.99) 0%, rgba(3,16,31,.93) 38%, rgba(3,16,31,.54) 62%, rgba(3,16,31,.35) 100%),
        url("../img/hero-bg.jpg") right top / auto 100% no-repeat,
        var(--navy-930);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 46%, rgba(202,160,82,.12), transparent 22rem),
        linear-gradient(125deg, transparent 58%, rgba(255,255,255,.045) 59%, transparent 61%);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-copy {
    max-width: 520px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: .74rem;
    line-height: 1.35;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
}

.kicker::before {
    content: "";
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-light), rgba(202,160,82,.16));
}

.hero h1,
.about h2,
.section-title h2,
.diff-heading h2,
.content-heading h2,
.cta-copy h2,
.inner-hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.03;
    color: var(--white);
    margin: 0;
}

.hero h1 {
    font-size: clamp(2.9rem, 5.5vw, 4.65rem);
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.hero h1::first-line {
    color: var(--white);
}

.hero h1 {
    background: linear-gradient(180deg, var(--white), var(--white) 57%, var(--gold) 58%, var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-rule {
    display: block;
    width: 58px;
    height: 2px;
    margin: 22px 0 16px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}

.hero p {
    margin: 0 0 24px;
    max-width: 430px;
    color: rgba(247,249,251,.78);
    font-size: .98rem;
}

.outline-btn.small {
    margin-top: 10px;
    min-height: 42px;
    padding: 10px 18px;
    font-size: .69rem;
}

.outline-btn svg,
.gold-btn svg {
    width: 17px;
    height: 17px;
}

/* SOBRE */
.about {
    display: grid;
    grid-template-columns: 47% 53%;
    min-height: 232px;
    border-bottom: 1px solid var(--line-soft);
    background: linear-gradient(180deg, var(--navy-930), var(--navy-900));
}

.about-visual {
    position: relative;
    min-height: 232px;
    background:
        linear-gradient(90deg, rgba(3,16,31,.28), rgba(3,16,31,.64)),
        url("../img/office.jpg") center / cover no-repeat;
    border-right: 1px solid var(--line);
}

.about-copy {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 28px;
    padding: 36px max(34px, calc((100vw - 1120px) / 2)) 34px 48px;
    align-items: center;
}

.mini-mark {
    width: 45px;
    height: 45px;
    display: inline-grid;
    place-items: center;
    justify-self: center;
}

.mini-mark img {
    width: 36px;
    filter: drop-shadow(0 9px 20px rgba(0,0,0,.35));
}

.about h2 {
    color: var(--gold-light);
    font-size: 1.52rem;
    text-transform: uppercase;
    letter-spacing: .035em;
    margin-bottom: 15px;
}

.about h2::after,
.content-heading h2::after,
.diff-heading span,
.section-title h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}

.about p {
    max-width: 590px;
    margin: 0 0 10px;
    color: rgba(247,249,251,.73);
    font-size: .94rem;
}

/* ÁREAS */
.practice {
    padding: 16px 0 0;
    background: linear-gradient(180deg, var(--navy-900), var(--navy-930));
    border-bottom: 1px solid var(--line-soft);
}

.section-title {
    text-align: center;
    margin-bottom: 18px;
}

.section-title h2 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 1.42rem;
    letter-spacing: .07em;
}

.section-title h2::after {
    width: 260px;
    height: 1px;
    margin-top: 9px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    justify-items: center;
    padding-bottom: 8px;
}

.practice-card {
    width: 100%;
    min-height: 104px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    padding: 14px 12px;
    border: 1px solid rgba(202,160,82,.62);
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
        rgba(3,16,31,.30);
    box-shadow: 0 18px 44px rgba(0,0,0,.15);
}

.practice-card:nth-child(n+6) {
    transform: translateX(65%);
}

.practice-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

.practice-card:nth-child(n+6):hover {
    transform: translate(65%, -3px);
}

.card-icon {
    color: var(--gold);
    display: inline-grid;
    place-items: center;
}

.card-icon svg {
    width: 34px;
    height: 34px;
}

.practice-card h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .055em;
}

/* DIFERENCIAIS */
.differentials {
    padding: 20px 0 18px;
    background: linear-gradient(180deg, var(--navy-930), var(--navy-900));
    border-bottom: 1px solid var(--line-soft);
}

.differentials-inner {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    align-items: center;
}

.diff-heading h2 {
    color: var(--gold-light);
    font-size: 1.45rem;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.diff-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.diff-item {
    min-height: 78px;
    padding: 0 18px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 7px;
    border-left: 1px solid rgba(202,160,82,.34);
    text-align: center;
}

.diff-item svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.diff-item p {
    margin: 0;
    color: rgba(247,249,251,.75);
    font-size: .77rem;
    line-height: 1.25;
}

/* CONTEÚDO */
.insights {
    padding: 18px 0 24px;
    background: linear-gradient(180deg, var(--navy-900), var(--navy-930));
    border-bottom: 1px solid var(--line-soft);
}

.content-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 16px;
}

.content-heading h2 {
    color: var(--gold-light);
    font-size: 1.45rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.content-heading a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .08em;
    font-weight: 800;
}

.content-heading a svg {
    width: 16px;
    height: 16px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.insight-card {
    display: grid;
    grid-template-columns: 36% 1fr;
    min-height: 122px;
    border: 1px solid rgba(202,160,82,.46);
    background: rgba(3,16,31,.34);
    overflow: hidden;
}

.insight-thumb {
    min-height: 122px;
    overflow: hidden;
    background: var(--navy-800);
}

.insight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .84;
    filter: saturate(.82) contrast(1.08);
}

.insight-copy {
    padding: 18px 16px 14px;
}

.insight-copy span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .075em;
    font-size: .62rem;
    font-weight: 800;
}

.insight-copy h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: .94rem;
    line-height: 1.35;
    font-weight: 500;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: .65rem;
    letter-spacing: .08em;
    font-weight: 800;
}

.read-more svg { width: 15px; height: 15px; }

/* CTA */
.cta-strip {
    padding: 0 0 22px;
    background: var(--navy-930);
}

.cta-box {
    min-height: 88px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(202,160,82,.62);
    background: rgba(3,16,31,.38);
    overflow: hidden;
}

.cta-image {
    height: 88px;
    background:
        linear-gradient(90deg, rgba(3,16,31,.42), rgba(3,16,31,.86)),
        url("../img/cta-bg.jpg") left center / cover no-repeat;
}

.cta-copy h2 {
    color: var(--gold-light);
    font-size: 1.55rem;
    text-transform: uppercase;
    letter-spacing: .035em;
    margin-bottom: 4px;
}

.cta-copy p {
    margin: 0;
    color: rgba(247,249,251,.70);
    font-size: .88rem;
}

.gold-btn {
    margin-right: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-color: transparent;
    color: var(--navy-930);
    box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.gold-btn:hover {
    color: var(--navy-930);
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* FOOTER */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 80% 10%, rgba(202,160,82,.10), transparent 26rem),
        linear-gradient(180deg, var(--navy-900), #020813);
    border-top: 1px solid var(--line-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr .9fr .65fr;
    gap: 34px;
    padding: 28px 0 22px;
}

.footer-brand img { width: 210px; margin-bottom: 12px; }
.footer-brand p {
    max-width: 320px;
    margin: 0;
    color: rgba(247,249,251,.62);
    font-size: .86rem;
}

.footer-column h3 {
    color: var(--gold-light);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .72rem;
}

.footer-contact,
.footer-menu {
    display: grid;
    gap: 7px;
}

.footer-contact li {
    display: flex;
    gap: 9px;
    color: rgba(247,249,251,.66);
    font-size: .84rem;
}

.footer-contact svg {
    color: var(--gold-light);
    flex: 0 0 auto;
    margin-top: 3px;
}

.footer-menu a {
    color: rgba(247,249,251,.66);
    font-size: .84rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-light);
    font-weight: 800;
    font-size: .72rem;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0 14px;
    border-top: 1px solid rgba(247,249,251,.08);
    color: rgba(247,249,251,.50);
    font-size: .78rem;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(247,249,251,.62); }

.cookie-note {
    position: fixed;
    z-index: 220;
    left: 20px;
    right: 20px;
    bottom: 18px;
    max-width: 760px;
    margin: 0 auto;
    display: none;
    align-items: center;
    gap: 16px;
    padding: 15px 17px;
    background: rgba(3,16,31,.96);
    border: 1px solid rgba(202,160,82,.42);
    color: rgba(247,249,251,.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.cookie-note.is-visible { display: flex; }
.cookie-note p { margin: 0; font-size: .82rem; }
.cookie-note button {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-light);
    padding: 9px 14px;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: .68rem;
    cursor: pointer;
}

/* Páginas internas */
.inner-hero {
    padding: 150px 0 72px;
    background:
        linear-gradient(90deg, rgba(3,16,31,.96), rgba(3,16,31,.66)),
        url("../img/hero-bg.jpg") right top / auto 100% no-repeat,
        var(--navy-930);
    border-bottom: 1px solid var(--line-soft);
}

.inner-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    max-width: 900px;
    text-transform: uppercase;
}

.inner-hero p { max-width: 760px; color: rgba(247,249,251,.72); }

.page-content,
.archive-wrap {
    padding: 70px 0;
}

.narrow {
    max-width: 850px;
}

.narrow,
.page-content {
    color: rgba(247,249,251,.76);
}

.narrow h2,
.narrow h3 {
    color: var(--white);
    font-family: var(--serif);
}

.narrow a {
    color: var(--gold-light);
    border-bottom: 1px solid var(--line);
}

.featured-image {
    margin-bottom: 30px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mobile-whatsapp { display: none; }

/* RESPONSIVO: CELULAR CORRIGIDO */
@media (max-width: 1120px) {
    .container { width: min(100% - 44px, 1120px); }
    .brand img { width: 180px; }
    .menu { gap: 22px; }
    .header-whatsapp { display: none; }
    .practice-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .practice-card:nth-child(n+6) { transform: none; }
    .practice-card:nth-child(n+6):hover { transform: translateY(-3px); }
    .diff-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 0; }
    .insight-card { grid-template-columns: 1fr; }
    .insight-thumb { height: 150px; }
    .cta-box { grid-template-columns: 180px 1fr; padding-right: 20px; }
    .cta-box .gold-btn { grid-column: 2; width: fit-content; margin: 0 0 18px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    body.nav-open { overflow: hidden; }

    .site-header {
        background: rgba(3,16,31,.94);
        border-bottom: 1px solid rgba(202,160,82,.26);
        backdrop-filter: blur(18px);
    }

    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 162px;
        max-height: 58px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        margin-left: auto;
        position: relative;
        z-index: 130;
    }

    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .main-navigation {
        display: none;
        position: fixed;
        inset: 78px 0 0;
        margin: 0;
        padding: 22px 0 32px;
        background:
            radial-gradient(circle at 78% 0%, rgba(202,160,82,.16), transparent 18rem),
            linear-gradient(180deg, rgba(3,16,31,.99), rgba(2,9,20,.99));
        border-bottom: 1px solid var(--line-soft);
        overflow-y: auto;
        min-height: calc(100dvh - 78px);
    }

    .main-navigation.is-open { display: block; }

    .menu {
        width: min(100% - 34px, 580px);
        margin: 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu li {
        width: 100%;
        border-bottom: 1px solid rgba(247,249,251,.08);
    }

    .menu a {
        width: 100%;
        justify-content: space-between;
        padding: 17px 0;
        font-size: 1rem;
    }

    .menu a::after { display: none; }

    .menu a::before {
        content: "";
        order: 2;
        width: 7px;
        height: 7px;
        margin-top: .55em;
        border-top: 1px solid var(--gold-light);
        border-right: 1px solid var(--gold-light);
        transform: rotate(45deg);
    }

    .hero {
        min-height: auto;
        padding: 112px 0 56px;
        background:
            linear-gradient(180deg, rgba(3,16,31,.96) 0%, rgba(3,16,31,.86) 56%, rgba(3,16,31,.98) 100%),
            url("../img/hero-bg.jpg") right top / auto 76% no-repeat,
            var(--navy-930);
    }

    .hero-copy {
        max-width: 700px;
        padding-top: 120px;
    }

    .hero h1 {
        max-width: 720px;
        font-size: clamp(2.5rem, 10vw, 4.35rem);
    }

    .hero p {
        max-width: 610px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .about-copy {
        grid-template-columns: 46px 1fr;
        gap: 18px;
        padding: 34px 28px;
    }

    .practice {
        padding-top: 34px;
    }

    .practice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-bottom: 34px;
    }

    .practice-card {
        min-height: 120px;
    }

    .differentials-inner {
        grid-template-columns: 1fr;
    }

    .diff-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .diff-item {
        border: 1px solid rgba(202,160,82,.24);
        padding: 18px 14px;
    }

    .insights {
        padding: 44px 0;
    }

    .content-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .insights-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .insight-card {
        grid-template-columns: 36% 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .cta-image { height: 150px; }
    .cta-copy { padding: 24px 22px 10px; }
    .cta-box .gold-btn {
        grid-column: auto;
        width: calc(100% - 44px);
        margin: 8px 22px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 96px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
        line-height: 1.62;
    }

    body::before { background-size: 50px 50px; }

    .container { width: min(100% - 28px, 1120px); }

    .header-inner { min-height: 72px; }
    .brand img { width: 142px; }
    .main-navigation {
        inset: 72px 0 0;
        min-height: calc(100dvh - 72px);
    }

    .hero {
        padding: 92px 0 44px;
        background:
            linear-gradient(180deg, rgba(3,16,31,.92) 0%, rgba(3,16,31,.88) 50%, rgba(3,16,31,1) 100%),
            url("../img/hero-bg.jpg") right 72px / auto 300px no-repeat,
            var(--navy-930);
    }

    .hero-copy {
        padding-top: 235px;
    }

    .kicker {
        font-size: .65rem;
        letter-spacing: .12em;
        gap: 9px;
    }

    .kicker::before {
        width: 32px;
    }

    .hero h1 {
        font-size: clamp(2.05rem, 11.5vw, 3.25rem);
        line-height: 1.02;
    }

    .hero p {
        font-size: .94rem;
    }

    .outline-btn,
    .gold-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
        min-height: 48px;
        padding: 13px 16px;
        font-size: .70rem;
        letter-spacing: .055em;
    }

    .about-visual { min-height: 210px; }

    .about-copy {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .mini-mark { display: none; }

    .about h2,
    .content-heading h2,
    .section-title h2,
    .diff-heading h2,
    .cta-copy h2 {
        font-size: 1.38rem;
    }

    .section-title h2::after {
        width: 160px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .practice-card {
        min-height: 102px;
    }

    .practice-card h3 {
        font-size: .98rem;
    }

    .diff-list {
        grid-template-columns: 1fr;
    }

    .diff-item {
        min-height: auto;
        justify-items: start;
        grid-template-columns: 34px 1fr;
        text-align: left;
    }

    .insight-card {
        grid-template-columns: 1fr;
    }

    .insight-thumb {
        height: 172px;
    }

    .cta-strip {
        padding-bottom: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 34px;
    }

    .footer-brand img {
        width: 185px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .cookie-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }

    .cookie-note button {
        width: 100%;
    }

    .mobile-whatsapp {
        position: fixed;
        z-index: 190;
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 18px;
        background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
        color: var(--navy-930);
        border: 1px solid rgba(255,255,255,.18);
        box-shadow: 0 14px 38px rgba(0,0,0,.34);
        text-transform: uppercase;
        letter-spacing: .065em;
        font-size: .72rem;
        font-weight: 800;
    }

    body.cookie-visible .mobile-whatsapp {
        bottom: 136px;
    }

    .inner-hero {
        padding: 116px 0 58px;
        background:
            linear-gradient(180deg, rgba(3,16,31,.96), rgba(3,16,31,.88)),
            url("../img/hero-bg.jpg") right top / auto 280px no-repeat,
            var(--navy-930);
    }

    .page-content,
    .archive-wrap {
        padding: 52px 0;
    }
}

@media (max-width: 380px) {
    .brand img { width: 126px; }
    .hero-copy { padding-top: 220px; }
    .hero h1 { font-size: 1.92rem; }
    .hero { background-size: auto 270px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}
