:root {
    --ink-black: #141413;
    --signal-orange: #cf4500;
    --signal-orange-light: #f37338;
    --canvas-cream: #f3f0ee;
    --lifted-cream: #fcfbfa;
    --white: #ffffff;
    --charcoal: #262627;
    --slate-gray: #696969;
    --ghost-cream: #e8e2da;
    --shadow-level-1: rgba(0, 0, 0, 0.04) 0 4px 24px;
    --shadow-level-2: rgba(0, 0, 0, 0.08) 0 24px 48px;
    --max-content: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Sofia Sans', Arial, sans-serif;
    font-weight: 450;
    color: var(--ink-black);
    background: var(--canvas-cream);
    line-height: 1.4;
}

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

.nav-shell {
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    padding-top: 24px;
}

.floating-nav {
    width: min(calc(100% - 32px), var(--max-content));
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-level-1);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

.brand-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.brand-circle.red {
    background: #eb001b;
}

.brand-circle.yellow {
    background: #f79e1b;
    margin-left: -12px;
    mix-blend-mode: multiply;
}

.brand-name {
    font-size: 22px;
    letter-spacing: -0.44px;
    font-weight: 500;
}

.desktop-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 52px);
    flex: 1;
}

.desktop-links a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.48px;
    white-space: nowrap;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-toggle,
.menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(20, 20, 19, 0.55);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: var(--ink-black);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.menu-toggle span:first-child {
    transform: translateY(-4px);
}

.menu-toggle span:last-child {
    transform: translateY(4px);
}

.menu-toggle[aria-expanded='true'] span:first-child {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
    transform: rotate(-45deg);
}

.search-field {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.25s ease, opacity 0.2s ease;
}

.search-field input {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(20, 20, 19, 0.5);
    font: inherit;
    font-size: 16px;
    padding: 12px 22px;
    background: var(--white);
}

.search-field.is-open {
    width: min(320px, 56vw);
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 19, 0.95);
    padding: 120px 24px 24px;
    z-index: 28;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.68px;
    font-weight: 500;
    padding: 14px 0;
}

.mobile-menu.is-open {
    display: block;
}

.section {
    width: min(calc(100% - 64px), var(--max-content));
    margin: 0 auto;
    padding: 104px 0;
    position: relative;
}

.hero {
    padding-top: 64px;
}

.eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal-orange-light);
}

.hero-grid {
    margin-top: 28px;
    display: grid;
    gap: 36px;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
}

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

h1 {
    font-size: clamp(40px, 7vw, 64px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

h2 {
    font-size: clamp(30px, 4vw, 36px);
    line-height: 44px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 0;
}

.hero-side p,
.lifted p,
.insight-copy {
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 450;
    margin-bottom: 22px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 20px;
    padding: 6px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1.5px solid var(--ink-black);
    font-size: 16px;
    letter-spacing: -0.32px;
    font-weight: 500;
    transition: transform 0.15s ease;
}

.btn:active {
    transform: translateY(2px) scale(0.99);
}

.btn-primary {
    background: var(--ink-black);
    color: var(--canvas-cream);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink-black);
}

.hero-media {
    border-radius: 40px;
    min-height: min(68vh, 620px);
    margin-top: 56px;
    background:
        radial-gradient(circle at 78% 18%, rgba(243, 115, 56, 0.35), transparent 28%),
        radial-gradient(circle at 12% 82%, rgba(243, 115, 56, 0.2), transparent 26%),
        linear-gradient(135deg, #1f1f1d 0%, #101010 100%);
    padding: 40px;
    color: var(--canvas-cream);
    display: flex;
    align-items: flex-end;
}

.hero-media-content {
    max-width: 420px;
}

.hero-media-content p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 18px;
}

.constellation {
    overflow: hidden;
}

.ghost {
    position: absolute;
    top: 10px;
    left: -16px;
    font-size: clamp(72px, 16vw, 128px);
    line-height: 1;
    color: var(--ghost-cream);
    letter-spacing: -0.02em;
    pointer-events: none;
    z-index: 0;
}

.constellation > .eyebrow,
.constellation > h2,
.orbits {
    position: relative;
    z-index: 2;
}

.constellation > h2 {
    max-width: 700px;
    margin-top: 20px;
}

.orbits {
    margin-top: 74px;
    display: grid;
    gap: 74px;
}

.orbit-card {
    width: min(100%, 390px);
}

.orbit-left {
    justify-self: start;
}

.orbit-right {
    justify-self: end;
}

.orbit-center {
    justify-self: center;
}

.circle-media {
    width: clamp(260px, 26vw, 340px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-level-2);
    margin-bottom: 24px;
}

.media-one {
    background:
        radial-gradient(circle at 30% 35%, #f7b07d 0%, #cb6938 38%, #8c2e06 100%);
}

.media-two {
    background:
        radial-gradient(circle at 70% 30%, #f4c2a3 0%, #b16f47 36%, #4c2d20 100%);
}

.media-three {
    background:
        radial-gradient(circle at 48% 25%, #f9cf83 0%, #c67a33 42%, #3f2b1f 100%);
}

.satellite {
    position: absolute;
    right: -14px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--ink-black);
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.orbit-card h3 {
    margin-top: 12px;
}

.orbit-lines {
    position: absolute;
    inset: 180px -140px auto;
    width: calc(100% + 280px);
    height: 500px;
    z-index: 1;
    pointer-events: none;
}

.orbit-lines path {
    fill: none;
    stroke: var(--signal-orange-light);
    stroke-width: 1.2;
    stroke-linecap: round;
    opacity: 0.85;
}

.lifted {
    background: var(--lifted-cream);
    border-radius: 40px;
    box-shadow: var(--shadow-level-2);
    padding: 64px 56px;
}

.lifted-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
    align-items: stretch;
}

.pill-showcase {
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 30%, rgba(243, 115, 56, 0.45), transparent 32%),
        linear-gradient(160deg, #272624 0%, #171716 100%);
    color: var(--canvas-cream);
    padding: 46px 38px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-level-2);
}

.chip {
    align-self: flex-start;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-black);
    padding: 8px 20px;
    font-size: 15px;
    margin-bottom: auto;
}

.pill-showcase h3 {
    margin: 18px 0 20px;
}

.insight {
    text-align: center;
}

.insight .eyebrow {
    justify-content: center;
}

.insight h2 {
    margin-top: 20px;
}

.insight-copy {
    max-width: 720px;
    margin: 16px auto 28px;
}

.contact-section {
    padding-top: 70px;
}

.contact-hero {
    position: relative;
}

.contact-title-wrap {
    margin-top: 20px;
    max-width: 920px;
    position: relative;
}

.contact-watermark {
    position: absolute;
    right: -12px;
    top: -8px;
    font-size: clamp(52px, 10vw, 118px);
    color: var(--ghost-cream);
    letter-spacing: -0.02em;
    z-index: -1;
}

.contact-shell {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.contact-copy {
    font-size: 18px;
    line-height: 1.45;
    max-width: 560px;
}

.contact-footnote {
    margin-top: -8px;
    font-size: 14px;
    color: var(--slate-gray);
}

.contact-brief {
    background: linear-gradient(165deg, #21201e 0%, #131312 100%);
    border-radius: 40px;
    padding: 30px;
    color: var(--canvas-cream);
    box-shadow: var(--shadow-level-2);
}

.contact-brief h3 {
    margin-bottom: 12px;
    color: var(--canvas-cream);
}

.contact-brief p {
    font-size: 16px;
    line-height: 1.45;
}

.contact-meta-grid {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.contact-meta-grid > div {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
}

.meta-label {
    margin: 0;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.66);
}

.meta-value {
    margin: 6px 0 0;
    color: var(--canvas-cream);
    font-size: 15px !important;
}

.contact-process {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-process h4 {
    margin: 0 0 12px;
    color: var(--canvas-cream);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-process p {
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.88);
    border-left: 1px solid rgba(243, 115, 56, 0.72);
    padding-left: 12px;
}

.contact-process span {
    display: inline-block;
    min-width: 68px;
    color: #f7b07d;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.office-locations {
    margin-top: 24px;
}

.office-locations h4 {
    margin: 0 0 10px;
    color: var(--canvas-cream);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.office-location-grid {
    display: grid;
    gap: 10px;
}

.office-location-grid article {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
}

.office-mini {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px !important;
    line-height: 1.35;
}

.contact-card {
    background: linear-gradient(180deg, #fcfbfa 0%, #f4f1ee 100%);
    border-radius: 40px;
    border: 1px solid rgba(20, 20, 19, 0.12);
    box-shadow: var(--shadow-level-2);
    padding: 30px;
}

.contact-form-head {
    margin-bottom: 14px;
}

.contact-form-head h3 {
    margin-bottom: 8px;
}

.contact-form-head p {
    margin: 0;
    color: var(--slate-gray);
    font-size: 15px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-fieldset {
    border: 1px solid rgba(20, 20, 19, 0.12);
    border-radius: 28px;
    padding: 16px;
    margin: 0;
    display: grid;
    gap: 14px;
    background: rgba(255, 255, 255, 0.5);
}

.contact-fieldset legend {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #6a6762;
    padding: 0 8px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border-radius: 20px;
    border: 1.5px solid rgba(20, 20, 19, 0.24);
    font: inherit;
    font-size: 16px;
    padding: 12px 18px;
    background: var(--white);
    color: var(--ink-black);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: rgba(207, 69, 0, 0.7);
    box-shadow: 0 0 0 2px rgba(207, 69, 0, 0.12);
}

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

.contact-submit-row {
    display: grid;
    gap: 12px;
    align-items: center;
}

.contact-submit-row p {
    margin: 0;
    color: var(--slate-gray);
    font-size: 13px;
}

.contact-submit-row .btn {
    justify-self: start;
}

.contact-success,
.contact-error {
    margin: 0 0 14px;
    border-radius: 16px;
    padding: 10px 12px;
    font-size: 14px;
}

.contact-success {
    border: 1px solid rgba(61, 220, 151, 0.5);
    background: rgba(61, 220, 151, 0.15);
}

.contact-error {
    border: 1px solid rgba(207, 69, 0, 0.44);
    background: rgba(207, 69, 0, 0.1);
}

.field-error {
    font-size: 12px;
    color: #9a3a0a;
}

.site-footer {
    margin-top: 48px;
    background: var(--ink-black);
    color: var(--white);
}

.footer-wrap {
    width: min(calc(100% - 64px), var(--max-content));
    margin: 0 auto;
    padding: 64px 0 148px;
}

.footer-wrap h2 {
    color: var(--white);
    max-width: 640px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 54px;
}

.footer-grid h4 {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.56px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 450;
    margin: 9px 0;
}

.footer-bottom {
    margin-top: 52px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.footer-meta-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-meta-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.country-pill {
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    font: inherit;
    font-size: 15px;
    padding: 8px 18px;
}

@media (max-width: 1023px) {
    .desktop-links a:nth-child(n + 4) {
        display: none;
    }

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

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

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

    .contact-title-wrap {
        max-width: 100%;
    }

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

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

@media (max-width: 767px) {
    .nav-shell {
        padding-top: 16px;
    }

    .floating-nav {
        width: calc(100% - 16px);
        padding: 12px 14px;
    }

    .desktop-links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .search-field.is-open {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;
        width: auto;
        z-index: 35;
    }

    .section,
    .footer-wrap {
        width: calc(100% - 32px);
    }

    .section {
        padding: 56px 0;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-media {
        min-height: 52vh;
        margin-top: 36px;
        padding: 24px;
    }

    h1 {
        font-size: clamp(36px, 11vw, 42px);
    }

    h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .orbits {
        gap: 40px;
        margin-top: 44px;
    }

    .orbit-card,
    .orbit-left,
    .orbit-right,
    .orbit-center {
        justify-self: center;
        width: 100%;
        max-width: 340px;
    }

    .circle-media {
        width: 220px;
        margin: 0 auto 20px;
    }

    .satellite {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .orbit-lines {
        display: none;
    }

    .ghost {
        top: 36px;
        font-size: 72px;
    }

    .lifted {
        border-radius: 32px;
        padding: 40px 24px;
    }

    .pill-showcase {
        min-height: 330px;
        border-radius: 40px;
    }

    .contact-watermark {
        font-size: 62px;
        right: 0;
        top: 12px;
    }

    .contact-brief {
        border-radius: 32px;
        padding: 24px;
    }

    .contact-card {
        border-radius: 24px;
        padding: 18px;
    }

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

    .contact-fieldset {
        border-radius: 20px;
        padding: 14px;
    }

    .contact-submit-row .btn {
        width: 100%;
    }

    .footer-wrap {
        padding: 56px 0 96px;
    }

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

@media (min-width: 1440px) {
    .section,
    .footer-wrap,
    .floating-nav {
        width: min(calc(100% - 200px), var(--max-content));
    }
}
