:root {
    --ink-950: #07111f;
    --ink-900: #0b1728;
    --ink-800: #14243a;
    --ink-700: #263951;
    --ink-600: #455a72;
    --ink-500: #687b8f;
    --mist-100: #edf1f3;
    --mist-50: #f6f8f7;
    --white: #ffffff;
    --teal-500: #26b9a8;
    --teal-400: #50d2c1;
    --teal-100: #dff7f3;
    --blue-500: #4a72ff;
    --line-dark: rgba(255, 255, 255, 0.13);
    --line-light: #dbe3e7;
    --shadow-sm: 0 12px 35px rgba(7, 17, 31, 0.08);
    --shadow-lg: 0 28px 90px rgba(7, 17, 31, 0.15);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1220px;
}

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

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

body {
    min-width: 320px;
    background: var(--mist-50);
    color: var(--ink-950);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

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

:focus-visible {
    outline: 3px solid rgba(80, 210, 193, 0.48);
    outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--ink-950);
    font-family: "Manrope", sans-serif;
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

p {
    color: var(--ink-600);
}

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

.section {
    padding: 112px 0;
}

.section--compact {
    padding: 80px 0;
}

.section--dark {
    position: relative;
    overflow: hidden;
    background: var(--ink-950);
    color: var(--white);
}

.section--dark .container {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--teal-500);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 25px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: var(--teal-400);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.48fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 58px;
}

.section-heading h2 {
    max-width: 760px;
    font-size: clamp(2.25rem, 4vw, 4rem);
}

.section-heading p {
    max-width: 470px;
    font-size: 1.05rem;
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--white);
}

.section-heading--light p {
    color: rgba(255,255,255,0.66);
}

.line-icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--teal-400);
    color: var(--ink-950);
}

.button--primary:hover {
    background: #68e0d0;
}

.button--dark {
    background: var(--ink-950);
    color: var(--white);
}

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

.button--ghost {
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.button--ghost:hover {
    border-color: var(--teal-400);
    color: var(--teal-400);
}

.button .arrow {
    font-size: 1.1em;
    transition: transform 180ms ease;
}

.button:hover .arrow {
    transform: translateX(3px);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    background: rgba(7, 17, 31, 0.88);
    backdrop-filter: blur(18px);
    color: var(--white);
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line-dark);
    background: rgba(7, 17, 31, 0.97);
}

.nav-shell {
    display: flex;
    width: min(1320px, calc(100% - 48px));
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-inline: auto;
}

.brand {
    position: relative;
    z-index: 3;
    display: inline-flex;
    width: 134px;
    height: 56px;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
}

.brand img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.nav-panel {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.nav-link,
.nav-services-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 13px;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.76);
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-services-button:hover,
body[data-page="home"] .nav-dropdown.is-active .nav-services-button {
    color: var(--white);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    width: 315px;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    background: #0d1a2c;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease;
}

.dropdown-menu a:hover {
    background: rgba(80, 210, 193, 0.09);
    color: var(--white);
}

.dropdown-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(80, 210, 193, 0.2);
    border-radius: 9px;
    color: var(--teal-400);
}

.dropdown-icon .line-icon {
    width: 17px;
    height: 17px;
}

.nav-cta {
    min-height: 44px;
    padding-inline: 18px;
    white-space: nowrap;
}

.nav-toggle {
    position: relative;
    z-index: 3;
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    position: absolute;
    width: 17px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle::before { transform: translateY(-5px); }
.nav-toggle::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 820px;
    padding: 178px 0 98px;
    background: linear-gradient(120deg, #07111f 0%, #0b1728 58%, #102239 100%);
    color: var(--white);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.72fr);
    gap: 90px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 820px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(3.45rem, 6.5vw, 6.45rem);
    font-weight: 600;
    letter-spacing: -0.065em;
}

.hero-copy h1 span {
    color: var(--teal-400);
}

.hero-copy > p {
    max-width: 690px;
    color: rgba(255,255,255,0.68);
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-top: 52px;
    color: rgba(255,255,255,0.64);
    font-size: 0.79rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-proof span::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
    content: "";
}

.hero-brief {
    max-width: 465px;
    padding: 8px 0 8px 46px;
    border-left: 1px solid rgba(255,255,255,0.22);
}

.hero-brief-label {
    display: block;
    margin-bottom: 34px;
    color: var(--teal-400);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-brief h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 560;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.hero-brief p {
    color: rgba(255,255,255,0.62);
    font-size: 0.96rem;
}

.hero-brief-areas {
    display: grid;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-brief-areas span {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.78);
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-strip {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--line-dark);
    background: rgba(8,19,33,0.82);
}

.hero-strip .container {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    align-items: center;
}

.strip-label,
.strip-item {
    min-height: 76px;
    padding: 0 24px;
    border-right: 1px solid var(--line-dark);
}

.strip-label {
    display: flex;
    align-items: center;
    padding-left: 0;
    color: rgba(255,255,255,0.48);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.strip-item {
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.78);
    font-family: "Manrope", sans-serif;
    font-size: 0.84rem;
    font-weight: 650;
    text-align: center;
}

.strip-item:last-child {
    border-right: 0;
}

/* Service system */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
    border-color: rgba(38,185,168,0.42);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.service-top,
.service-bottom {
    position: relative;
    z-index: 1;
}

.service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.service-index {
    color: var(--ink-500);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.11em;
}

.service-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(38,185,168,0.24);
    border-radius: 14px;
    background: var(--teal-100);
    color: #128c7f;
}

.service-icon .line-icon {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    max-width: 430px;
    margin: 52px 0 16px;
    font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}

.service-card h4 {
    margin-bottom: 14px;
    color: var(--teal-500);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.service-card p {
    max-width: 530px;
    font-size: 0.98rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--ink-950);
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
    font-weight: 750;
    text-decoration: none;
}

.service-link span {
    color: var(--teal-500);
    transition: transform 160ms ease;
}

.service-link:hover span {
    transform: translateX(3px);
}

/* Advantage / methodology */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.advantage-item {
    min-height: 285px;
    padding: 36px 34px;
    border-right: 1px solid var(--line-dark);
}

.advantage-item:last-child {
    border-right: 0;
}

.advantage-item .line-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 55px;
    color: var(--teal-400);
}

.advantage-item h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.35rem;
}

.advantage-item p {
    color: rgba(255,255,255,0.56);
    font-size: 0.94rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.method-step {
    position: relative;
    min-height: 270px;
    padding: 30px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.65);
}

.method-number {
    display: inline-flex;
    margin-bottom: 54px;
    color: var(--teal-500);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.method-step h3 {
    margin-bottom: 13px;
    font-size: 1.38rem;
}

.method-step p {
    font-size: 0.91rem;
}

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

.question-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: start;
    padding: 27px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.question-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink-950);
    color: var(--teal-400);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

.question-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.question-card p {
    font-size: 0.9rem;
}

.cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    padding: 64px;
    border-radius: var(--radius-lg);
    background: var(--ink-950);
    color: var(--white);
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    max-width: 720px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.cta-panel p {
    max-width: 640px;
    color: rgba(255,255,255,0.62);
}

/* Inner page hero */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 105px;
    background: linear-gradient(120deg, #07111f 0%, #0d1c30 100%);
    color: var(--white);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 930px;
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.7rem);
    font-weight: 600;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 690px;
    color: rgba(255,255,255,0.65);
    font-size: 1.18rem;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-top: 42px;
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.page-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.page-meta span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-400);
    content: "";
}

/* About */
.manifesto-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
    gap: 100px;
    align-items: start;
}

.manifesto-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.manifesto-copy p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.manifesto-quote {
    position: sticky;
    top: 124px;
    padding: 36px;
    border-left: 3px solid var(--teal-500);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.manifesto-quote p {
    color: var(--ink-900);
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    font-weight: 580;
    letter-spacing: -0.025em;
    line-height: 1.45;
}

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

.purpose-card {
    min-height: 350px;
    padding: 40px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.035);
}

.purpose-card .line-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 78px;
    color: var(--teal-400);
}

.purpose-card h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 2rem;
}

.purpose-card p {
    color: rgba(255,255,255,0.58);
}

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

.principle {
    padding: 32px;
    border-top: 2px solid var(--ink-950);
    background: var(--white);
}

.principle small {
    display: block;
    margin-bottom: 45px;
    color: var(--teal-500);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.principle h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.principle p {
    font-size: 0.9rem;
}

.leader-card {
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.1fr);
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.leader-media {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--ink-900);
}

.leader-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.leader-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 7vw, 82px);
}

.leader-content h2 {
    margin-bottom: 8px;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.leader-title {
    margin-bottom: 34px;
    color: var(--teal-500);
    font-family: "Manrope", sans-serif;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.leader-content p {
    margin-bottom: 18px;
    font-size: 1rem;
}

/* Contact */
.contact-hero {
    padding: 196px 0 106px;
    background: linear-gradient(120deg, #07111f 0%, #0b1728 58%, #102239 100%);
    color: var(--white);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
    gap: clamp(72px, 10vw, 150px);
    align-items: end;
}

.contact-hero-copy h1 {
    max-width: 880px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(3.2rem, 6.2vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.065em;
}

.contact-hero-copy > p {
    max-width: 720px;
    color: rgba(255,255,255,0.64);
    font-size: 1.12rem;
}

.contact-hero-brief {
    padding: 6px 0 2px 36px;
    border-left: 1px solid rgba(80,210,193,0.54);
}

.contact-hero-brief > span {
    display: block;
    margin-bottom: 24px;
    color: var(--teal-400);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-hero-brief > p {
    margin-bottom: 34px;
    color: rgba(255,255,255,0.76);
    font-size: 1rem;
    line-height: 1.75;
}

.contact-hero-brief dl {
    border-top: 1px solid var(--line-dark);
}

.contact-hero-brief dl div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
}

.contact-hero-brief dt {
    color: rgba(255,255,255,0.4);
    font-size: 0.73rem;
    text-transform: uppercase;
}

.contact-hero-brief dd {
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
}

.contact-inquiry {
    padding: 112px 0 124px;
    background: var(--mist-50);
}

.contact-inquiry-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.48fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 72px;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line-light);
}

.contact-inquiry-heading span {
    display: block;
    margin-bottom: 22px;
    color: var(--teal-500);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-inquiry-heading h2 {
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.contact-inquiry-heading > p {
    max-width: 460px;
    font-size: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 112px);
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: 124px;
}

.contact-aside h3 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-aside > p {
    margin-bottom: 36px;
}

.contact-details {
    display: grid;
    border-top: 1px solid var(--line-light);
}

.contact-detail {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 21px 0;
    border-bottom: 1px solid var(--line-light);
}

.contact-detail .line-icon {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    color: var(--teal-500);
}

.contact-detail strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink-950);
    font-family: "Manrope", sans-serif;
    font-size: 0.83rem;
}

.contact-detail a,
.contact-detail span {
    color: var(--ink-600);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--teal-500);
}

.contact-form-panel {
    padding-top: 30px;
    border-top: 2px solid var(--ink-950);
}

.form-intro {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-light);
}

.form-intro h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.form-intro p {
    font-size: 0.92rem;
}

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

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-800);
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cbd6dc;
    border-radius: 4px;
    background: var(--white);
    color: var(--ink-950);
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.form-field input,
.form-field select {
    height: 52px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 145px;
    padding: 14px 15px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(38,185,168,0.1);
}

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

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 26px;
}

.form-note {
    max-width: 390px;
    color: var(--ink-500);
    font-size: 0.74rem;
    line-height: 1.55;
}

.submit-button {
    min-width: 175px;
}

.submit-button[disabled] {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.form-status {
    margin-top: 20px;
    padding: 13px 15px;
    border-radius: 9px;
    font-size: 0.85rem;
}

.form-status[hidden] {
    display: none;
}

.form-status.is-success {
    border: 1px solid #bde7d3;
    background: #effaf5;
    color: #17683f;
}

.form-status.is-error {
    border: 1px solid #f1c6c6;
    background: #fff3f3;
    color: #9b2929;
}

.contact-next {
    padding: 108px 0 116px;
    background: var(--ink-950);
    color: var(--white);
}

.contact-next-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
    margin-bottom: 64px;
}

.contact-next-heading h2 {
    max-width: 800px;
    color: var(--white);
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.contact-process {
    border-top: 1px solid var(--line-dark);
}

.contact-process article {
    display: grid;
    grid-template-columns: 70px minmax(220px, 0.55fr) minmax(0, 1fr);
    gap: 36px;
    align-items: baseline;
    padding: 30px 0;
    border-bottom: 1px solid var(--line-dark);
}

.contact-process article > span {
    color: var(--teal-400);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.contact-process h3 {
    color: var(--white);
    font-size: 1.12rem;
}

.contact-process p {
    max-width: 620px;
    color: rgba(255,255,255,0.56);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    padding: 72px 0 28px;
    background: #050c16;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(160px, 0.55fr)) minmax(220px, 0.85fr);
    gap: 52px;
    padding-bottom: 56px;
}

.footer-brand {
    width: 142px;
    height: 70px;
    overflow: hidden;
}

.footer-brand img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-intro p {
    max-width: 310px;
    margin-top: 18px;
    color: rgba(255,255,255,0.5);
    font-size: 0.84rem;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.38);
    font-size: 0.71rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 11px;
    list-style: none;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,0.72);
    font-size: 0.84rem;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--teal-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
}

.footer-domain {
    color: var(--teal-400);
}

/* Responsive */
@media (max-width: 1050px) {
    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 165px;
    }

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

    .hero-brief {
        max-width: 650px;
    }

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

    .contact-layout {
        gap: 52px;
    }

    .contact-hero-grid {
        gap: 64px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, 0.7fr);
        gap: 30px;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: grid;
    }

    .nav-panel {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 24px;
        padding: 112px 24px 36px;
        background: var(--ink-950);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .nav-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        display: grid;
        width: 100%;
        gap: 2px;
    }

    .nav-link,
    .nav-services-button {
        width: 100%;
        min-height: 56px;
        justify-content: flex-start;
        padding: 0;
        border-bottom: 1px solid var(--line-dark);
        color: var(--white);
        font-size: 1rem;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 8px 0;
        border: 0;
        background: rgba(255,255,255,0.035);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: grid;
    }

    .nav-cta {
        width: 100%;
    }

    .services-grid,
    .purpose-grid,
    .manifesto-grid,
    .contact-layout,
    .leader-card {
        grid-template-columns: 1fr;
    }

    .contact-hero-grid,
    .contact-inquiry-heading,
    .contact-next-heading {
        grid-template-columns: 1fr;
    }

    .contact-hero-brief {
        max-width: 650px;
    }

    .contact-inquiry-heading,
    .contact-next-heading {
        gap: 22px;
    }

    .manifesto-grid {
        gap: 50px;
    }

    .manifesto-quote,
    .contact-aside {
        position: static;
    }

    .leader-media {
        min-height: 520px;
    }

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

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

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

    .section {
        padding: 82px 0;
    }

    .section--compact {
        padding: 62px 0;
    }

    .nav-shell {
        min-height: 74px;
    }

    .brand {
        height: 50px;
    }

    .hero {
        padding: 142px 0 0;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 15vw, 4.55rem);
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
    }

    .hero-brief {
        padding: 34px 0 0;
        border-top: 1px solid rgba(255,255,255,0.18);
        border-left: 0;
    }

    .hero-strip {
        position: static;
        margin-top: 70px;
    }

    .hero-strip .container {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .strip-label,
    .strip-item {
        min-height: 58px;
        padding: 0 16px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
        justify-content: flex-start;
        text-align: left;
    }

    .strip-label {
        padding-left: 16px;
    }

    .service-card {
        min-height: 390px;
        padding: 28px;
    }

    .service-card h3 {
        margin-top: 44px;
    }

    .advantage-grid,
    .method-grid,
    .questions-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .advantage-item:last-child {
        border-bottom: 0;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        padding: 38px 28px;
    }

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

    .page-hero {
        padding: 150px 0 82px;
    }

    .contact-hero {
        padding: 148px 0 82px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.65rem);
    }

    .contact-hero-brief {
        padding: 32px 0 0;
        border-top: 1px solid rgba(80,210,193,0.46);
        border-left: 0;
    }

    .contact-inquiry {
        padding: 82px 0 90px;
    }

    .contact-inquiry-heading {
        margin-bottom: 54px;
        padding-bottom: 34px;
    }

    .form-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .contact-next {
        padding: 82px 0 88px;
    }

    .contact-process article {
        grid-template-columns: 36px 1fr;
        gap: 18px;
        align-items: start;
        padding: 26px 0;
    }

    .contact-process article p {
        grid-column: 2;
    }

    .purpose-card {
        min-height: 310px;
        padding: 30px;
    }

    .leader-media {
        min-height: 430px;
    }

    .leader-content {
        padding: 38px 28px;
    }

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

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

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

    .submit-button {
        width: 100%;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
