:root {
    --blue: #003f62;
    --navy: #010836;
    --cream: #f2f1ec;
    --cream-deep: #edebe5;
    --ink: #061b1a;
    --body: #393635;
    --sky: #cfeafb;
    --sky-deep: #a6cde3;
    --gold: #e3ab56;
    --purple: #964475;
    --max: 1040px;
}

@font-face {
    font-family: "Akkurat Pro";
    src: url("fonts/Akkurat/Akkurat Light Pro.otf") format("opentype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Akkurat Pro";
    src: url("fonts/Akkurat/Akkurat Regular Pro.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Akkurat Pro";
    src: url("fonts/Akkurat/Akkurat Bold Pro.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Akkurat Pro";
    src: url("fonts/Akkurat/Akkurat Light Italic Pro.otf") format("opentype");
    font-style: italic;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Akkurat Pro";
    src: url("fonts/Akkurat/Akkurat Italic Pro.otf") format("opentype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Akkurat Pro";
    src: url("fonts/Akkurat/Akkurat Bold Italic Pro.otf") format("opentype");
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--body);
    background: var(--cream);
    font: 20px/1.5 "Akkurat Pro", Helvetica, Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    width: min(calc(100% - 48px), 864px);
    height: 174px;
    display: flex;
    align-items: center;
    gap: 38px;
    transform: translateX(-50%);
}

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

.brand img {
    width: 45px;
    height: 43px;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight:400;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--gold);
}

.site-header .nav-links a:last-child {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 38px;
    margin-left: auto;
    padding: 8px 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.mobile-menu {
    position: fixed;
    z-index: 30;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    min-height: 100vh;
    min-height: 100dvh;
    padding: 82px 28px 30px;
    display: none;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
}

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

.mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 15px;
}

.scroll-nav {
    position: fixed;
    z-index: 25;
    top: 18px;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -16px, 0);
    transition: opacity 320ms ease, transform 320ms ease;
}

.scroll-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.scroll-nav-inner {
    width: min(calc(100% - 48px), 864px);
    min-height: 48px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 63, 98, 0.94);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(1, 8, 54, 0.16);
}

.scroll-nav .brand img {
    width: 25px;
    height: 24px;
}

.scroll-nav .nav-links {
    color: #fff;
}

.scroll-nav .nav-links a:last-child {
    color: var(--gold);
    font-weight: 700;
}

.scroll-nav .menu-toggle {
    display: none;
}

.section-inner {
    position: relative;
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
}

.hero {
    min-height: 800px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
}

.hero-inner {
    min-height: 800px;
}

.hero-copy {
    position: absolute;
    top: 250px;
    left: 175px;
    width: min(662px, calc(100% - 175px));
    color: #fff;
}

.hero .text-link:hover {color:#fff;} 

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

h1 {
    margin-bottom: 28px;
    font-size: clamp(34px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.34px;
}

h2 {
    margin-bottom: 28px;
    color: var(--ink);
    font-size: clamp(32px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.1;
}

p {
    margin-bottom: 24px;
    font-weight: 300;
}

strong {
    font-weight: 700;
}

.hero-copy p {
    width: min(503px, 100%);
    color: #c1e8f5;
    font-size: clamp(22px, 2.2vw, 24px);
    line-height: 1.25;
}

.hero-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    animation: heroReveal 900ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero-reveal-fast {
    animation-delay: 120ms;
}

.hero-reveal-medium {
    animation-delay: 430ms;
}

.hero-reveal-slow {
    animation-delay: 680ms;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-underline-offset: 4px;
}


.link-arrow {
    flex: 0 0 auto;
    width: 34px;
    height: 18px;
    overflow: visible;
    fill: none;
    stroke-linejoin: miter;
    stroke-width: 2.4;
}

.text-link.light {
    color: #c1e8f5;
}

.text-link.dark {
    color: var(--ink);
}

.text-link.dark:hover {color:#800650;}

.split-section {
    min-height: 800px;
    overflow: hidden;
    background: var(--cream);
}

.split-section.arrows-right {
    background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
}

.two-column {
    min-height: 800px;
    display: grid;
    grid-template-columns: minmax(0, 510px) minmax(0, 299px);
    gap: clamp(96px, 16vw, 231px);
    align-items: center;
}

.two-column.reverse {
    grid-template-columns: minmax(0, 299px) minmax(0, 510px);
}

.section-copy {
    max-width: 510px;
}

.section-copy p {
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.25;
}

.art-panel {
    position: relative;
    min-height: 800px;
    align-self: stretch;
    overflow: hidden;
    pointer-events: none;
}

.art-panel .art-texture,
.art-panel .art-composite {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 240px);
    object-fit: cover;
}

.art-panel .art-texture {
    mix-blend-mode: multiply;
    opacity: 0.7;
}

.arrows-right .art-panel {
    margin-right: calc((100vw - min(100vw, var(--max))) / -2 - 28px);
}

.clouds-left .art-panel {
    margin-left: calc((100vw - min(100vw, var(--max))) / -2 - 28px);
}

.clouds-left .art-panel .art-texture {
    object-position: right center;
}

.clouds-right .art-panel {
    margin-right: calc((100vw - min(100vw, var(--max))) / -2 - 28px);
}

.clouds-right .art-panel .art-texture {
    transform: rotate(180deg);
}

.circle {
    position: absolute;
    width: 52px;
    height: 52px;
    border: 11px solid currentColor;
    border-radius: 50%;
}

.circle-purple {
    color: var(--purple);
}

.circle-gold {
    color: #ffcf66;
}

.circle-pale {
    color: #f4e7cb;
}

.circle-a { left: 47%; top: 27.75%; }
.circle-b { left: 33%; top: 41.25%; }
.circle-c { left: 59%; top: 69.875%; }
.circle-e { left: 42%; top: 13.375%; }
.circle-f { left: 21%; top: 82%; }
.circle-g { left: 68.5%; top: 73.375%; }

.expertise-section {
    position: relative;
    min-height: 800px;
    padding: 140px 0 220px;
    overflow: hidden;
    color: var(--ink);
    background: var(--sky);
}

.eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 76px;
    text-align: center;
    color: var(--ink);
    font-size: 25px;
    letter-spacing: 3px;
    line-height: 1.6;
    text-transform: uppercase;
}

.expertise-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
}

.expertise-list h2 {
    text-align: center;
}

.rule {
    width: 76%;
    height: 3px;
    margin: 0 auto 26px;
    border: 0;
    background-image: radial-gradient(circle, rgba(6, 27, 26, 0.58) 0 1px, transparent 1.2px);
    background-position: left center;
    background-repeat: repeat-x;
    background-size: 9px 3px;
}

.expertise-list ul {
    columns: 2;
    column-gap: 48px;
    margin: 0;
    padding-left: 21px;
    font-size: 20px;
    line-height: 1.3;
}

.expertise-list li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.expertise-texture {
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 170px;
    overflow: hidden;
    background: url("i/design-arrows-horizontal.png") center 40% / 100% auto no-repeat;
    opacity: 0.18;
    transform: translateX(-50%);
    mix-blend-mode: luminosity;
}

.resources-section {
    padding: 112px 0 96px;
    background: linear-gradient(180deg, var(--sky-deep) 0%, var(--cream) 100%);
}

.resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.resource-card {
    display: grid;
    grid-template-columns: 226px 1fr;
    gap: 34px;
    align-items: start;
}

.resource-card.staggered {
    margin-top: 108px;
}

.resource-card img {
    width: 226px;
    height: 340px;
    object-fit: cover;
}

.resource-card h2 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1;
}

.resource-card p,
.vital-few p,
.contact-copy p {
    font-size: 20px;
    line-height: 1.5;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    min-height: 34px;
    margin-bottom: 28px;
    padding: 6px 18px;
    border-radius: 5px;
    color: #d5d9d5;
    background: var(--purple);
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.button:hover,
.button:focus {
    background: #800650;
}

.vital-few {
    width: min(540px, 100%);
    margin-top: 84px;
    margin-left: 64px;
    display: grid;
    grid-template-columns: 101px 1fr;
    gap: 36px;
    align-items: start;
}

.vital-few img {
    width: 101px;
}

.vital-few h2 {
    margin-bottom: 12px;
}

.contact-section {
    padding: 92px 0 96px;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 297px 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.portrait-wrap {
    grid-row: span 2;
    width: 297px;
    height: 389px;
    overflow: hidden;
}

.portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-heading {
    grid-column: span 2;
}

.contact-heading h2 {
    margin-bottom: 0;
}

.contact-copy a {
    color: var(--ink);
    text-underline-offset: 4px;
}

.site-footer {
    padding: 94px 0 78px;
    background: var(--blue);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px 44px;
    align-items: center;
}

.footer-nav {
    color: #fff;
}

.footer-nav a:last-child {
    color: var(--gold);
}

.site-footer p {
    grid-column: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.45;
}

[data-parallax] {
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}

.art-panel .art-texture[data-parallax],
.art-panel .art-composite[data-parallax] {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.clouds-right .art-panel .art-texture[data-parallax] {
    transform: rotate(180deg) translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

@media (max-width: 1060px) {
    .site-header {
        width: calc(100% - 40px);
    }

    .nav-links {
        gap: 16px;
        font-size: 11px;
    }

    .hero-copy {
        left: 120px;
        width: calc(100% - 120px);
    }
}

@media (max-width: 980px) {
    .two-column {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
        gap: 48px;
    }

    .two-column.reverse {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    }
}

@media (max-width: 820px) {
    body {
        font-size: 18px;
    }

    .section-inner {
        width: calc(100% - 40px);
    }

    .site-header {
        height: 92px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .scroll-nav {
        top: 20px;
        display: block;
    }

    .scroll-nav-inner {
        width: calc(100% - 40px);
        min-height: 56px;
        justify-content: space-between;
        padding: 0 14px 0 16px;
    }

    .scroll-nav .brand img {
        width: 35px;
        height: 34px;
    }

    .scroll-nav .menu-toggle {
        display: block;
        width: 38px;
        margin-left: 0;
    }

    .scroll-nav .menu-toggle span {
        background: #fff;
    }

    .hero,
    .hero-inner,
    .split-section,
    .two-column {
        min-height: auto;
    }

    .hero {
        padding: 148px 0 110px;
    }

    .hero-copy {
        position: static;
        width: 100%;
    }

    .two-column,
    .two-column.reverse,
    .resource-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        gap: 34px;
        padding: 88px 0;
    }

    .two-column.reverse .art-panel {
        order: 2;
    }

    .art-panel {
        min-height: 360px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .expertise-section {
        min-height: auto;
        padding: 88px 0 120px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .expertise-list ul {
        columns: 1;
    }

    .resource-card,
    .vital-few {
        grid-template-columns: 120px 1fr;
        gap: 24px;
    }

    .resource-card.staggered {
        margin-top: 0;
    }

    .resource-card img {
        width: 120px;
        height: 180px;
    }

    .resource-card h2 {
        font-size: 30px;
    }

    .vital-few {
        margin-left: 0;
    }

    .vital-few img {
        width: 74px;
    }

    .portrait-wrap {
        grid-row: auto;
    }

    .contact-heading {
        grid-column: auto;
    }

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

    .site-footer p {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .section-inner {
        width: calc(100% - 36px);
    }

    .hero {
        padding-top: 128px;
    }

    .resource-card,
    .vital-few {
        grid-template-columns: 1fr;
    }

    .resource-card img {
        width: 170px;
        height: auto;
    }

    .portrait-wrap {
        width: min(297px, 100%);
    }
}

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

    [data-parallax],
    .hero-reveal {
        animation: none;
        opacity: 1;
        transform: none !important;
    }
}
