:root {
    --site-navy-1000: #040c15;
    --site-navy-950: #071525;
    --site-navy-900: #0b1f36;
    --site-navy-800: #12304f;
    --site-gold: #b99a5f;
    --site-gold-light: #d8bf88;
    --site-ivory: #f4f0e8;
    --site-white: #ffffff;
    --site-text: #162131;
    --site-muted: #6f7884;
    --site-line: rgba(11, 31, 54, 0.12);
    --site-radius: 24px;
    --site-shadow: 0 30px 80px rgba(4, 12, 21, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--site-white);
    color: var(--site-text);
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.site-menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-shell {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 0 clamp(24px, 5vw, 76px);
    border-bottom: 1px solid transparent;
    color: var(--site-white);
    transition: 0.25s ease;
}

.site-header.is-scrolled {
    min-height: 76px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(4, 12, 21, 0.92);
    box-shadow: 0 15px 40px rgba(4, 12, 21, 0.18);
    backdrop-filter: blur(18px);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.site-brand-mark {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(216, 191, 136, 0.62);
    border-radius: 14px;
    color: var(--site-gold-light);
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
}

.site-brand-copy strong,
.site-brand-copy small {
    display: block;
}

.site-brand-copy strong {
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.site-brand-copy small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 12px;
    font-weight: 700;
}

.site-nav > a:not(.site-nav-cta) {
    color: rgba(255, 255, 255, 0.72);
}

.site-nav > a:hover {
    color: var(--site-gold-light);
}

.site-nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(216, 191, 136, 0.52);
    border-radius: 999px;
    color: var(--site-white);
}

.site-menu-button {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px clamp(24px, 6vw, 92px) 76px;
    background:
        radial-gradient(circle at 75% 30%, rgba(185, 154, 95, 0.19), transparent 28%),
        radial-gradient(circle at 15% 70%, rgba(18, 48, 79, 0.72), transparent 34%),
        linear-gradient(135deg, var(--site-navy-1000), var(--site-navy-900));
    color: var(--site-white);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
    max-width: 1500px;
    margin: 0 auto;
}

.eyebrow {
    color: var(--site-gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.strategy-copy h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
    font-family: Georgia, serif;
    font-weight: 400;
}

.hero h1 {
    max-width: 790px;
    margin: 24px 0 28px;
    font-size: clamp(46px, 5.5vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero h1 em,
.section-heading h2 em,
.strategy-copy h2 em,
.faq-heading h2 em {
    display: block;
    color: var(--site-gold-light);
    font-weight: 400;
}

.hero-description {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: 0.2s ease;
}

.button-gold {
    background: var(--site-gold);
    color: var(--site-white);
    box-shadow: 0 14px 34px rgba(185, 154, 95, 0.22);
}

.button-gold:hover {
    background: var(--site-gold-light);
    color: var(--site-navy-950);
    transform: translateY(-2px);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--site-white);
}

.button-ghost:hover {
    border-color: rgba(216, 191, 136, 0.55);
    color: var(--site-gold-light);
}

.hero-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-signals > div {
    padding: 20px 20px 0 0;
}

.hero-signals strong,
.hero-signals span {
    display: block;
}

.hero-signals strong {
    color: var(--site-gold-light);
    font-family: Georgia, serif;
    font-size: 16px;
}

.hero-signals span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.5;
}

.hero-visual {
    position: relative;
}

.architecture-card {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 180px 24px 24px 24px;
    background:
        linear-gradient(180deg, #31465a 0%, #b7a47d 44%, #806b4b 100%);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.34);
}

.architecture-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.15) 50%, transparent 50.3%),
        linear-gradient(transparent 49.7%, rgba(255, 255, 255, 0.08) 50%, transparent 50.3%);
    background-size: 95px 95px;
    content: "";
}

.architecture-sky {
    position: absolute;
    top: 90px;
    right: 70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(241, 220, 176, 0.64);
    box-shadow: 0 0 80px rgba(241, 220, 176, 0.42);
}

.architecture-building {
    position: absolute;
    right: 9%;
    bottom: 0;
    left: 16%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 10px;
    height: 76%;
}

.architecture-building span {
    display: block;
    height: 72%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(8, 24, 40, 0.86) 0,
            rgba(8, 24, 40, 0.86) 34px,
            rgba(216, 191, 136, 0.72) 35px,
            rgba(216, 191, 136, 0.72) 38px
        );
}

.architecture-building span:nth-child(2) {
    height: 94%;
}

.architecture-building span:nth-child(3) {
    height: 82%;
}

.architecture-building span:nth-child(4) {
    height: 66%;
}

.architecture-shadow {
    position: absolute;
    right: -20%;
    bottom: -40px;
    width: 120%;
    height: 190px;
    background: rgba(4, 12, 21, 0.72);
    filter: blur(30px);
    transform: rotate(-8deg);
}

.architecture-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(4, 12, 21, 0.64);
    backdrop-filter: blur(16px);
}

.architecture-caption span,
.architecture-caption strong {
    display: block;
}

.architecture-caption span {
    color: var(--site-gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.architecture-caption strong {
    margin-top: 7px;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
}

.hero-floating-card {
    position: absolute;
    top: 20%;
    left: -70px;
    width: 220px;
    padding: 22px;
    border: 1px solid rgba(216, 191, 136, 0.35);
    border-radius: 16px;
    background: rgba(7, 21, 37, 0.86);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(16px);
}

.hero-floating-card span,
.hero-floating-card strong {
    display: block;
}

.hero-floating-card span {
    color: var(--site-gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-floating-card strong {
    margin-top: 10px;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

.hero-scroll {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1500px;
    margin: 55px auto 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll span {
    width: 34px;
    height: 1px;
    background: var(--site-gold);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(216, 191, 136, 0.09);
    border-radius: 50%;
}

.hero-orbit-one {
    top: -300px;
    right: -280px;
    width: 740px;
    height: 740px;
}

.hero-orbit-two {
    bottom: -400px;
    left: -300px;
    width: 780px;
    height: 780px;
}

.trust-strip {
    overflow: hidden;
    padding: 19px 0;
    border-bottom: 1px solid var(--site-line);
    background: var(--site-ivory);
}

.trust-strip > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    color: var(--site-navy-900);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.trust-strip i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--site-gold);
}

.section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px clamp(24px, 6vw, 92px);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
    align-items: end;
    gap: 80px;
}

.section-heading h2 {
    max-width: 900px;
    margin: 20px 0 0;
    color: var(--site-navy-950);
    font-size: clamp(39px, 4.5vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.section-heading h2 em {
    color: var(--site-gold);
}

.intro-editorial {
    padding-left: 32px;
    border-left: 1px solid var(--site-line);
}

.intro-editorial p {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.8;
}

.intro-editorial .intro-lead {
    margin-bottom: 20px;
    color: var(--site-navy-900);
    font-family: Georgia, serif;
    font-size: 21px;
    line-height: 1.55;
}

.services-section {
    padding-top: 55px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 58px;
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius);
    background: var(--site-white);
    transition: 0.25s ease;
}

.service-card:hover {
    border-color: rgba(185, 154, 95, 0.4);
    box-shadow: 0 24px 60px rgba(4, 12, 21, 0.08);
    transform: translateY(-4px);
}

.service-number {
    color: var(--site-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-card h3 {
    max-width: 290px;
    margin: 38px 0 18px;
    color: var(--site-navy-950);
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
}

.service-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.75;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: var(--site-navy-800);
    font-size: 11px;
    font-weight: 700;
}

.service-card li::before {
    margin-right: 9px;
    color: var(--site-gold);
    content: "—";
}

.service-card-featured {
    grid-row: span 2;
    min-height: 676px;
    background:
        radial-gradient(circle at 80% 15%, rgba(185, 154, 95, 0.2), transparent 26%),
        linear-gradient(150deg, var(--site-navy-950), var(--site-navy-800));
    color: var(--site-white);
}

.service-card-featured h3 {
    color: var(--site-white);
    font-size: 39px;
}

.service-card-featured p,
.service-card-featured ul {
    color: rgba(255, 255, 255, 0.62);
}

.service-card-dark {
    background: var(--site-ivory);
}

.service-card-dark a {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: 34px;
    color: var(--site-gold);
    font-size: 11px;
    font-weight: 800;
}

.strategy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 780px;
    background: var(--site-navy-950);
    color: var(--site-white);
}

.strategy-visual {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 35% 30%, rgba(185, 154, 95, 0.28), transparent 25%),
        linear-gradient(150deg, #122e49, #071525);
}

.strategy-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 68px 68px;
}

.strategy-map {
    position: absolute;
    inset: 16% 18%;
    border: 1px solid rgba(216, 191, 136, 0.28);
    border-radius: 48% 52% 37% 63% / 61% 35% 65% 39%;
    transform: rotate(-8deg);
}

.map-point {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid rgba(216, 191, 136, 0.25);
    border-radius: 50%;
    background: var(--site-gold-light);
    box-shadow: 0 0 0 12px rgba(216, 191, 136, 0.08);
}

.map-point-one {
    top: 20%;
    right: 28%;
}

.map-point-two {
    top: 50%;
    right: 44%;
}

.map-point-three {
    right: 37%;
    bottom: 18%;
}

.strategy-tag {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(4, 12, 21, 0.58);
    color: var(--site-gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.strategy-tag strong {
    display: block;
    margin-top: 8px;
    color: var(--site-white);
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.strategy-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
}

.strategy-copy h2 {
    margin: 22px 0 28px;
    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.05;
}

.strategy-copy p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.8;
}

.strategy-points {
    display: grid;
    gap: 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-points > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-points span {
    color: var(--site-gold-light);
    font-size: 10px;
    font-weight: 800;
}

.strategy-points p {
    font-size: 12px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 65px;
    border-top: 1px solid var(--site-line);
    border-bottom: 1px solid var(--site-line);
}

.process-grid article {
    min-height: 300px;
    padding: 34px 25px;
    border-right: 1px solid var(--site-line);
}

.process-grid article:last-child {
    border-right: 0;
}

.process-grid span {
    color: var(--site-gold);
    font-size: 10px;
    font-weight: 800;
}

.process-grid h3 {
    margin: 82px 0 17px;
    color: var(--site-navy-950);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}

.process-grid p {
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
    line-height: 1.7;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
    background: var(--site-ivory);
}

.about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
}

.about-copy h2 {
    max-width: 690px;
    margin: 22px 0 28px;
    color: var(--site-navy-950);
    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.08;
}

.about-copy p {
    max-width: 650px;
    margin: 0 0 18px;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 22px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--site-gold);
    color: var(--site-gold);
    font-size: 11px;
    font-weight: 800;
}

.about-visual {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background:
        radial-gradient(circle at 50% 45%, rgba(185, 154, 95, 0.28), transparent 25%),
        linear-gradient(150deg, var(--site-navy-900), var(--site-navy-1000));
    color: var(--site-white);
    text-align: center;
}

.about-monogram {
    display: grid;
    width: 170px;
    height: 170px;
    margin-bottom: 45px;
    place-items: center;
    border: 1px solid rgba(216, 191, 136, 0.48);
    border-radius: 50%;
    color: var(--site-gold-light);
    font-family: Georgia, serif;
    font-size: 42px;
}

.about-visual blockquote {
    max-width: 560px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.35;
}

.about-visual > span {
    margin-top: 28px;
    color: var(--site-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
}

.faq-heading h2 {
    margin: 22px 0;
    color: var(--site-navy-950);
    font-size: clamp(39px, 4vw, 60px);
    line-height: 1.08;
}

.faq-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.75;
}

.faq-list {
    border-top: 1px solid var(--site-line);
}

.faq-item {
    border-bottom: 1px solid var(--site-line);
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 86px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--site-navy-950);
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 19px;
    text-align: left;
}

.faq-item button span {
    color: var(--site-gold);
    font-family: Arial, sans-serif;
    font-size: 22px;
    transition: transform 0.2s ease;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    max-width: 680px;
    margin: 0;
    padding: 0 42px 26px 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.75;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
}

.faq-item.is-open button span {
    transform: rotate(45deg);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: clamp(50px, 8vw, 120px);
    padding: 120px clamp(24px, 7vw, 110px);
    background:
        radial-gradient(circle at 10% 10%, rgba(185, 154, 95, 0.16), transparent 24%),
        var(--site-navy-950);
    color: var(--site-white);
}

.contact-copy {
    align-self: center;
}

.contact-copy h2 {
    max-width: 690px;
    margin: 22px 0 28px;
    font-size: clamp(43px, 4.8vw, 72px);
    line-height: 1.02;
}

.contact-copy > p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.8;
}

.contact-assurances {
    display: grid;
    gap: 0;
    max-width: 560px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-assurances > div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-assurances strong,
.contact-assurances span {
    display: block;
}

.contact-assurances strong {
    color: var(--site-gold-light);
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
}

.contact-assurances span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
}

.lead-form-card {
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.lead-form-heading span {
    color: var(--site-gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lead-form-heading h3 {
    margin: 10px 0 30px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.site-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.site-field {
    min-width: 0;
}

.site-field-full {
    grid-column: 1 / -1;
}

.site-field label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
}

.site-field input,
.site-field select,
.site-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--site-white);
    outline: none;
    transition: 0.2s ease;
}

.site-field input,
.site-field select {
    height: 49px;
    padding: 0 13px;
}

.site-field textarea {
    min-height: 110px;
    padding: 13px;
    line-height: 1.55;
    resize: vertical;
}

.site-field input::placeholder,
.site-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.site-field select option {
    background: var(--site-navy-950);
    color: var(--site-white);
}

.site-field input:focus,
.site-field select:focus,
.site-field textarea:focus {
    border-color: rgba(216, 191, 136, 0.7);
    box-shadow: 0 0 0 3px rgba(185, 154, 95, 0.12);
}

.site-field.has-error input,
.site-field.has-error select,
.site-field.has-error textarea {
    border-color: #fb7185;
}

.site-field-error {
    display: block;
    min-height: 14px;
    margin-top: 5px;
    color: #fda4af;
    font-size: 9px;
    font-weight: 700;
}

.site-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    font-size: 10px;
    line-height: 1.55;
}

.site-consent input {
    margin-top: 2px;
    accent-color: var(--site-gold);
}

.lead-submit {
    width: 100%;
    margin-top: 18px;
}

.lead-submit.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.lead-submit.is-loading span::after {
    content: "…";
}

.lead-form-feedback {
    margin-top: 15px;
    padding: 0;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.lead-form-feedback.is-sucesso,
.lead-form-feedback.is-erro {
    padding: 13px 14px;
}

.lead-form-feedback.is-sucesso {
    border: 1px solid rgba(74, 222, 128, 0.24);
    background: rgba(34, 197, 94, 0.1);
    color: #bbf7d0;
}

.lead-form-feedback.is-erro {
    border: 1px solid rgba(251, 113, 133, 0.25);
    background: rgba(244, 63, 94, 0.1);
    color: #fecdd3;
}

.site-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    padding: 70px clamp(24px, 6vw, 92px) 30px;
    background: var(--site-navy-1000);
    color: var(--site-white);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-family: Georgia, serif;
    font-size: 20px;
}

.footer-brand span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    text-transform: uppercase;
}

.footer-main p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.7;
}

.footer-main > a {
    color: var(--site-gold-light);
    font-size: 11px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 50px;
    }

    .hero-floating-card {
        left: -30px;
    }

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

    .service-card-featured {
        grid-row: span 1;
        min-height: 430px;
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid article {
        border-bottom: 1px solid var(--site-line);
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        min-height: 76px;
    }

    .site-menu-button {
        position: relative;
        z-index: 110;
        display: grid;
        gap: 6px;
        width: 44px;
        height: 44px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        background: transparent;
    }

    .site-menu-button span {
        display: block;
        height: 1px;
        background: var(--site-white);
        transition: 0.2s ease;
    }

    .site-menu-open .site-menu-button span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .site-menu-open .site-menu-button span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 105;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        background: rgba(4, 12, 21, 0.98);
        font-family: Georgia, serif;
        font-size: 25px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .site-menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav-cta {
        font-family: Inter, Arial, sans-serif;
        font-size: 11px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-grid,
    .section-intro,
    .strategy-section,
    .about-section,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 650px;
        margin: 20px auto 0;
    }

    .architecture-card {
        min-height: 540px;
    }

    .hero-floating-card {
        left: 20px;
    }

    .intro-editorial {
        padding: 30px 0 0;
        border-top: 1px solid var(--site-line);
        border-left: 0;
    }

    .strategy-visual,
    .about-visual {
        min-height: 600px;
    }

    .faq-section {
        gap: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-brand-copy small {
        display: none;
    }

    .hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-signals {
        grid-template-columns: 1fr;
    }

    .hero-signals > div {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .architecture-card {
        min-height: 460px;
        border-radius: 100px 20px 20px 20px;
    }

    .hero-floating-card {
        display: none;
    }

    .trust-strip > div {
        justify-content: flex-start;
        width: max-content;
        padding-left: 20px;
    }

    .section {
        padding: 85px 20px;
    }

    .services-grid,
    .process-grid,
    .site-form-grid {
        grid-template-columns: 1fr;
    }

    .site-field-full {
        grid-column: auto;
    }

    .service-card-featured {
        min-height: 470px;
    }

    .process-grid article {
        min-height: 240px;
        border-right: 0;
    }

    .process-grid h3 {
        margin-top: 58px;
    }

    .strategy-copy,
    .about-copy {
        padding: 75px 20px;
    }

    .strategy-visual,
    .about-visual {
        min-height: 480px;
    }

    .about-visual {
        padding: 50px 20px;
    }

    .contact-section {
        padding: 85px 20px;
    }

    .lead-form-card {
        padding: 24px 18px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
