:root {
    --paper: #efefed;
    --paper-deep: #dededb;
    --ink: #171717;
    --muted: #60605d;
    --gold: #b57927;
    --gold-light: #e5b65f;
    --green: #15968d;
    --line: rgba(23, 23, 23, .16);
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Manrope", Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1.05;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid #d6d6d2;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 800;
}

.brand-copy {
    min-width: 0;
}

.brand-copy strong,
.brand-copy small {
    display: block;
    white-space: nowrap;
}

.brand-copy strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 15px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 11px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 700;
}

.desktop-nav a {
    transition: color .2s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.button {
    min-height: 54px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 0;
    font-weight: 700;
    line-height: 1.2;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.button-dark {
    background: var(--ink);
    color: #fff;
}

.button-dark:hover {
    background: var(--gold);
}

.button-light {
    border-color: rgba(23, 23, 23, .22);
    background: rgba(255, 255, 255, .7);
}

.button-light:hover {
    background: #fff;
}

.button-gold {
    background: var(--gold-light);
    color: var(--ink);
}

.button-gold:hover {
    background: #fff;
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    min-height: 636px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-panel {
    position: absolute;
    inset-block: 0;
    right: 0;
    width: 53%;
    background: var(--paper-deep);
}

.hero-people {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 92%;
}

.hero-photo {
    position: absolute;
    bottom: 0;
    object-fit: cover;
    object-position: top;
    filter: saturate(.9) contrast(1.02);
}

.hero-photo-jean {
    left: 3%;
    width: 46%;
    height: 84%;
}

.hero-photo-gabriela {
    right: 4%;
    width: 48%;
    height: 91%;
}

.hero-fade {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 112px;
    background: rgba(222, 222, 219, .72);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-block: 72px;
}

.hero-copy {
    width: 47%;
}

.eyebrow,
.section-label {
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.eyebrow span {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 590px;
    margin-bottom: 24px;
    font-size: clamp(42px, 4.1vw, 57px);
    font-weight: 800;
}

.hero h1 em {
    position: relative;
    display: inline-block;
    font-style: normal;
}

.hero h1 em::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 4px;
    background: var(--gold);
    content: "";
}

.hero-text {
    max-width: 570px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.proof-strip {
    padding-block: 24px;
    background: var(--ink);
    color: #fff;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, auto) 1fr;
    align-items: center;
    gap: 44px;
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 25px;
}

.proof-grid > div:nth-child(2) strong {
    color: var(--gold-light);
}

.proof-grid span {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.proof-grid > p {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.proof-grid > p span {
    color: var(--gold-light);
}

.section {
    padding-block: 104px;
}

.section-white {
    background: #fff;
}

.section-paper {
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.section-dark {
    background: var(--ink);
    color: #fff;
}

.split-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.split-section h2,
.section-heading h2,
.plans-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
}

.script-title {
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--gold);
    font-family: "Nothing You Could Do", cursive;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;
}

.method-copy {
    padding-top: 38px;
    color: var(--muted);
    font-size: 18px;
}

.method-copy .lead {
    color: var(--muted);
    font-size: clamp(21px, 2.1vw, 28px);
    line-height: 1.5;
}

.principles {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.principles article {
    min-height: 176px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principles span {
    display: block;
    margin-bottom: 26px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.principles strong {
    display: block;
    color: var(--ink);
}

.principles p {
    margin: 6px 0 0;
    font-size: 14px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.section-heading > p:last-child {
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service {
    min-height: 270px;
    padding: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: transform .25s ease, background-color .25s ease;
}

.service:hover {
    z-index: 2;
    background: #fff;
    transform: translateY(-4px);
}

.service > span {
    display: block;
    margin-bottom: 50px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.service h3 {
    margin-bottom: 14px;
    font-size: 23px;
}

.service p {
    margin: 0;
    color: var(--muted);
}

.process-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

.section-label-light {
    color: var(--gold-light);
}

.process-layout h2 {
    font-size: clamp(38px, 5vw, 64px);
}

.process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    list-style: none;
}

.process-list li {
    padding-block: 24px;
    display: grid;
    grid-template-columns: 64px 185px 1fr;
    gap: 18px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.process-list span {
    color: var(--gold-light);
    font-weight: 700;
}

.process-list strong {
    font-size: 18px;
}

.process-list p {
    margin: 0;
    color: rgba(255, 255, 255, .63);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.team-member {
    min-height: 380px;
    display: grid;
    grid-template-columns: 210px 1fr;
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.team-member img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: top;
}

.team-member > div {
    padding: 34px;
}

.team-member span,
.plan-kicker {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.team-member h3 {
    margin: 12px 0 20px;
    font-size: 31px;
}

.team-member p {
    margin: 0;
    color: var(--muted);
}

.plans-section {
    border-top: 1px solid var(--line);
}

.plans-heading {
    margin-bottom: 54px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: end;
}

.plans-heading > p {
    color: var(--muted);
    font-size: 18px;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.plan {
    padding: 38px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: #fff;
}

.plan-featured {
    background: var(--ink);
    color: #fff;
}

.plan h3 {
    margin: 14px 0 18px;
    font-size: 38px;
}

.plan > p {
    color: var(--muted);
}

.plan-featured > p {
    color: rgba(255, 255, 255, .64);
}

.plan ul {
    margin: 26px 0 34px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.plan li {
    display: flex;
    gap: 10px;
}

.plan li span {
    color: var(--green);
    font-weight: 800;
}

.plan-featured li span {
    color: var(--gold-light);
}

.plan-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
}

.plan-featured .plan-footer {
    border-color: rgba(255, 255, 255, .2);
}

.plan-footer small,
.plan-footer strong {
    display: block;
}

.plan-footer small {
    color: var(--muted);
}

.plan-featured .plan-footer small {
    color: rgba(255, 255, 255, .55);
}

.plan-footer strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 30px;
}

.final-cta {
    position: relative;
    padding-block: 100px;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.final-cta::before {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 10px;
    background: var(--gold);
    content: "";
}

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
}

.final-cta h2 {
    max-width: 880px;
    margin-bottom: 0;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
}

.site-footer {
    background: var(--ink);
    color: #fff;
}

.footer-grid {
    padding-block: 62px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
}

.footer-grid p {
    max-width: 560px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .62);
}

.footer-grid h2 {
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, .65);
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1040px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-button {
        width: 44px;
        height: 44px;
        padding: 11px;
        display: grid;
        align-content: center;
        gap: 5px;
        border: 0;
        background: #f1f1f1;
        cursor: pointer;
    }

    .menu-button span {
        height: 2px;
        display: block;
        background: var(--ink);
    }

    .mobile-nav {
        position: fixed;
        z-index: 99;
        top: 80px;
        right: 0;
        left: 0;
        height: calc(100vh - 80px);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: #fff;
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav > a:not(.button) {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font-weight: 700;
    }

    .mobile-nav .button {
        margin-top: 18px;
    }

    .hero-copy {
        width: 51%;
    }

    .hero-people {
        width: 48%;
    }

    .hero-panel {
        width: 49%;
    }

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

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

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .brand-copy strong {
        max-width: 235px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        min-height: 748px;
    }

    .hero-panel {
        width: 53%;
    }

    .hero-people {
        left: 35%;
        width: 100%;
        opacity: .28;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-inner {
        padding-block: 64px;
    }

    .hero h1 {
        max-width: 355px;
        font-size: clamp(40px, 11.4vw, 48px);
    }

    .hero-text {
        max-width: 345px;
        font-size: 18px;
    }

    .button-row {
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .proof-grid > p {
        display: none;
    }

    .proof-grid strong {
        font-size: 22px;
    }

    .section {
        padding-block: 76px;
    }

    .split-section,
    .process-layout,
    .plans-heading,
    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .method-copy {
        padding-top: 0;
    }

    .principles,
    .services-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .service {
        min-height: 230px;
    }

    .process-list li {
        grid-template-columns: 48px 1fr;
    }

    .process-list li p {
        grid-column: 2;
    }

    .team-member {
        grid-template-columns: 1fr;
    }

    .team-member img {
        height: 420px;
        min-height: 0;
    }

    .plan {
        padding: 28px 24px;
    }

    .plan h3 {
        font-size: 32px;
    }

    .plan-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .final-cta {
        padding-block: 76px;
    }

    .final-cta .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 420px) {
    .brand-copy strong {
        max-width: 205px;
    }

    .brand-copy small {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .eyebrow {
        font-size: 10px;
    }

    .proof-grid {
        gap: 10px;
    }

    .proof-grid span {
        font-size: 10px;
    }
}

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

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