:root {
    --color-primary: #1f2a44;      /* Deep blue for authority */
    --color-accent: #8c6a3c;       /* Warm subtle accent */
    --color-text: #1a1a1a;
    --color-light: #f7f6f4;        /* Soft warm background */
}

/* ====== Basis Reset ====== */

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--color-text);
    background-color: #ffffff;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ====== Layout ====== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== Header ====== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 0;
    background: transparent;
    border-bottom: none;
    z-index: 1000;
}

.header-solid {
    background: transparent;
}

.header-solid .logo a,
.header-solid .main-nav a {
    color: var(--color-primary);
}

.header-solid .nav-cta {
    border-color: var(--color-primary);
}

.header-on-image .logo a,
.header-on-image .main-nav a {
    color: #ffffff;
}

.header-on-image .nav-cta {
    border-color: #ffffff;
}


.header-solid .menu-toggle span {
    background: var(--color-primary);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ====== Navigation ====== */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.main-nav a {
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.main-nav a.active {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .main-nav a.active {
        color: var(--color-primary);
    }

    .main-nav a.active::after {
        background: var(--color-accent);
    }
}

.nav-cta {
    padding: 8px 16px;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

/* ====== Footer ====== */

.site-footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #666;
}

/* ====== Saxofonist detail ====== */

.sax-detail {
    --sax-ink: #091520;
    --sax-paper: #f2f0e9;
    --sax-gold: #c28b35;
    background: var(--sax-paper);
    color: var(--sax-ink);
}

.sax-detail .site-header .logo a,
.sax-detail .site-header .main-nav a {
    color: #ffffff;
}

.sax-detail .site-header .nav-cta {
    border-color: rgba(255, 255, 255, 0.65);
}

.sax-detail .site-header .menu-toggle span {
    background: #ffffff;
}

.sax-detail .site-footer {
    margin-top: 0;
    background: var(--sax-ink);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
}

.sax-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--sax-ink);
    color: #ffffff;
}

.sax-hero-image,
.sax-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sax-hero-image {
    object-fit: cover;
    object-position: 57% center;
}

.sax-hero-shade {
    background:
        linear-gradient(90deg, rgba(4, 12, 20, 0.92) 0%, rgba(4, 12, 20, 0.68) 39%, rgba(4, 12, 20, 0.08) 72%),
        linear-gradient(0deg, rgba(4, 12, 20, 0.66) 0%, rgba(4, 12, 20, 0.03) 58%);
}

.sax-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 168px;
    padding-bottom: 62px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
}

.sax-hero-copy {
    max-width: 710px;
}

.sax-hero h1 {
    max-width: 10ch;
    margin-bottom: 28px;
    font-size: clamp(54px, 6.5vw, 92px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.sax-hero-copy p {
    max-width: 590px;
    margin-bottom: 38px;
    font-size: clamp(18px, 1.65vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.sax-hero-note {
    margin-bottom: 5px;
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.sax-button {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

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

.sax-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.sax-button--light {
    background: #ffffff;
    color: var(--sax-ink);
}

.sax-button--light:hover {
    background: #ebe8df;
}

.sax-statement {
    padding: 132px 0;
}

.sax-statement-grid,
.sax-approach-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(56px, 9vw, 140px);
}

.sax-statement h2,
.sax-approach h2,
.sax-contact h2 {
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.sax-statement h2 {
    font-size: clamp(40px, 5vw, 66px);
}

.sax-statement-copy {
    max-width: 660px;
}

.sax-statement-copy p {
    margin-bottom: 24px;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.65;
    color: rgba(9, 21, 32, 0.76);
}

.sax-projects {
    padding: 132px 0;
    background: #ffffff;
}

.sax-projects-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(56px, 9vw, 140px);
    margin-bottom: 70px;
}

.sax-projects h2,
.sax-project-invite h3 {
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.sax-projects h2 {
    font-size: clamp(40px, 5vw, 66px);
}

.sax-projects-intro > p {
    max-width: 650px;
    padding-top: 4px;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.65;
    color: rgba(9, 21, 32, 0.76);
}

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

.sax-project-card {
    position: relative;
    grid-column: span 4;
    min-height: clamp(300px, 32vw, 440px);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    background: var(--sax-ink);
    color: #ffffff;
    text-decoration: none;
}

.sax-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(3, 12, 20, 0.86) 0%, rgba(3, 12, 20, 0.24) 56%, rgba(3, 12, 20, 0.02) 100%);
}

.sax-project-card img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sax-project-card:nth-child(3) img {
    object-position: 58% center;
}

.sax-project-card:nth-child(4) img {
    object-position: 60% center;
}

.sax-project-card-copy {
    width: 100%;
    padding: 28px;
}

.sax-project-card-copy p {
    margin-bottom: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.sax-project-card h3 {
    max-width: 13ch;
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.sax-project-card-copy span {
    display: inline-block;
    margin-top: 18px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
}

.sax-project-card--feature {
    grid-column: span 7;
    min-height: clamp(390px, 46vw, 590px);
}

.sax-project-card--feature .sax-project-card-copy {
    padding: clamp(30px, 4vw, 52px);
}

.sax-project-card--feature h3 {
    font-size: clamp(38px, 4.7vw, 64px);
}

.sax-project-card--wide {
    grid-column: span 5;
}

.sax-project-card--trio {
    grid-column: span 4;
}

.sax-project-card--dirty {
    grid-column: span 5;
}

.sax-project-card--quiet {
    grid-column: span 3;
    min-height: 260px;
    opacity: 0.72;
}

a.sax-project-card:hover img {
    transform: scale(1.045);
}

a.sax-project-card:focus-visible {
    outline: 3px solid var(--sax-gold);
    outline-offset: 5px;
}

.sax-project-invite {
    grid-column: span 7;
    min-height: clamp(300px, 32vw, 440px);
    padding: clamp(30px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--sax-paper);
}

.sax-project-invite h3 {
    max-width: 16ch;
    margin-bottom: 14px;
    font-size: clamp(32px, 3.8vw, 48px);
}

.sax-project-invite p {
    max-width: 610px;
    color: rgba(9, 21, 32, 0.72);
}

/* ====== Muzikale leiding projects ====== */

.leadership-project-grid .leadership-project-card {
    grid-column: span 6;
    min-height: clamp(360px, 38vw, 500px);
}

.leadership-project-grid .leadership-project-invite {
    grid-column: span 12;
    min-height: 280px;
}

.sax-button--outline {
    border: 1px solid var(--sax-ink);
    color: var(--sax-ink);
}

.sax-button--outline:hover {
    background: var(--sax-ink);
    color: #ffffff;
}

.sax-photo-break {
    padding: 120px 0;
    background: #ffffff;
}

.sax-photo-frame {
    position: relative;
}

.sax-photo-frame img {
    display: block;
    width: 100%;
    height: clamp(420px, 63vw, 720px);
    object-fit: cover;
    object-position: 50% 35%;
}

.sax-photo-frame p {
    position: absolute;
    left: clamp(20px, 4vw, 52px);
    bottom: clamp(20px, 4vw, 50px);
    max-width: 8ch;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(4, 12, 20, 0.38);
}

.sax-approach {
    padding: 120px 0 140px;
    background: #ffffff;
}

.sax-approach h2 {
    max-width: 10ch;
    font-size: clamp(38px, 4.8vw, 62px);
}

.sax-approach ul {
    list-style: none;
}

.sax-approach li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(9, 21, 32, 0.16);
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.5;
}

.sax-approach li span {
    padding-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #8a641f;
}

.sax-contact {
    padding: 128px 0;
    background: var(--sax-paper);
    color: var(--sax-ink);
    border-top: 1px solid rgba(9, 21, 32, 0.12);
}

.sax-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
    gap: 28px 80px;
    align-items: end;
}

.sax-contact h2 {
    max-width: 13ch;
    font-size: clamp(43px, 5.5vw, 72px);
}

.sax-contact p {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.65;
}

.sax-button--dark {
    grid-column: 2;
    width: fit-content;
    background: var(--sax-ink);
    color: #ffffff;
}

.sax-button--dark:hover {
    background: #14293b;
}

@media (max-width: 1024px) {
    .sax-detail .site-header .main-nav a {
        color: var(--sax-ink);
    }

    .sax-detail .site-header .nav-cta {
        border-color: var(--sax-ink);
    }

    .sax-hero-image {
        object-position: 62% center;
    }
}

@media (max-width: 760px) {
    .sax-hero {
        min-height: 100svh;
    }

    .sax-hero-image {
        object-position: 68% center;
    }

    .leadership-page .sax-hero-image {
        object-position: 55% center;
    }

    .sax-hero-shade {
        background:
            linear-gradient(0deg, rgba(4, 12, 20, 0.96) 0%, rgba(4, 12, 20, 0.7) 48%, rgba(4, 12, 20, 0.04) 82%),
            linear-gradient(90deg, rgba(4, 12, 20, 0.18), rgba(4, 12, 20, 0));
    }

    .sax-hero-inner {
        padding-top: 128px;
        padding-bottom: 42px;
    }

    .sax-hero h1 {
        font-size: clamp(48px, 14vw, 66px);
    }

    .sax-hero-note {
        display: none;
    }

    .sax-button {
        width: 100%;
    }

    .sax-statement,
    .sax-projects,
    .sax-photo-break,
    .sax-approach,
    .sax-contact {
        padding: 84px 0;
    }

    .sax-statement-grid,
    .sax-projects-intro,
    .sax-approach-grid,
    .sax-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sax-statement-copy p {
        font-size: 19px;
    }

    .sax-photo-frame img {
        height: 70svh;
        max-height: 620px;
        object-position: 57% center;
    }

    .sax-photo-frame p {
        left: 48px;
        right: 24px;
        bottom: 28px;
        max-width: 7.4ch;
        font-size: clamp(30px, 8.5vw, 34px);
        line-height: 1.05;
    }

    .sax-projects-intro {
        margin-bottom: 46px;
    }

    .sax-projects-grid,
    .sax-project-invite {
        grid-template-columns: 1fr;
    }

    .sax-projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sax-project-card,
    .sax-project-card--feature,
    .sax-project-card--wide,
    .sax-project-card--trio,
    .sax-project-card--dirty,
    .sax-project-card--quiet {
        grid-column: auto;
        min-height: 390px;
        opacity: 1;
    }

    .sax-project-card-copy,
    .sax-project-card--feature .sax-project-card-copy {
        padding: 28px;
    }

    .sax-project-invite {
        grid-column: auto;
        min-height: 390px;
        padding: 32px 28px 36px;
    }

    .sax-project-card h3,
    .sax-project-card--feature h3 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .leadership-project-grid {
        grid-template-columns: 1fr;
    }

    .leadership-project-grid .leadership-project-card {
        grid-column: auto;
        min-height: 390px;
    }

    .leadership-project-grid .leadership-project-card:first-child img {
        object-position: 70% center;
    }

    .leadership-project-grid .leadership-project-invite {
        grid-column: auto;
        min-height: 390px;
    }

    .sax-project-invite {
        gap: 28px;
        margin-top: 52px;
        padding-top: 34px;
    }

    .sax-approach li {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .sax-button--dark {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sax-button {
        transition: none;
    }
}

/* ====== Saxofonist-first homepage ====== */

.sax-home {
    background: #ffffff;
    color: var(--color-primary);
}

.sax-home .site-header .logo a,
.sax-home .site-header .main-nav a {
    color: #ffffff;
}

.sax-home .site-header .nav-cta {
    border-color: rgba(255, 255, 255, 0.62);
}

.sax-home .site-header .main-nav a:hover {
    color: #ffffff;
    opacity: 0.72;
}

.sax-home .site-header .menu-toggle span {
    background: #ffffff;
}

.concept-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 148px 0 76px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #07111a;
    color: #ffffff;
}

.concept-hero-media,
.concept-hero-shade {
    position: absolute;
    inset: 0;
}

.concept-hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.concept-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 29%;
}

.concept-hero-shade {
    background:
        linear-gradient(90deg, rgba(3, 10, 18, 0.9) 0%, rgba(3, 10, 18, 0.7) 38%, rgba(3, 10, 18, 0.14) 72%),
        linear-gradient(0deg, rgba(3, 10, 18, 0.58) 0%, rgba(3, 10, 18, 0.04) 62%);
}

.concept-hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.concept-hero-copy {
    max-width: 680px;
}

.concept-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(52px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: #ffffff;
}

.concept-role {
    margin-bottom: 24px;
    font-size: clamp(20px, 1.9vw, 26px);
    line-height: 1.25;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.94);
}

.concept-role span {
    color: rgba(255, 255, 255, 0.58);
}

.concept-lead {
    max-width: 32rem;
    margin-bottom: 32px;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.concept-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
}

.concept-btn-primary {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0a1722;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 180ms ease-out, color 180ms ease-out;
}

.concept-btn-primary:hover {
    background: #e9edf0;
    color: #0a1722;
}

.concept-text-link {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.45);
    text-underline-offset: 5px;
    font-weight: 600;
    transition: color 180ms ease-out, text-decoration-color 180ms ease-out;
}

.concept-text-link:hover {
    color: #ffffff;
    text-decoration-color: currentColor;
}

.concept-btn-primary:focus-visible,
.concept-text-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.concept-intro {
    padding: 104px 0;
    background: #ffffff;
}

.concept-intro-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.concept-intro h2 {
    max-width: 11ch;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: #0a1722;
}

.concept-intro p {
    max-width: 650px;
    padding-top: 4px;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.65;
    color: rgba(10, 23, 34, 0.72);
}

.btn-primary {
    background: #ffffff;
    color: var(--color-primary);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ====== Pillars Section ====== */

.pillars {
    padding: 104px 0;
    background: #f7f8f8;
}

.pillars-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
}

.pillars-heading h2 {
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: #0a1722;
}

.pillars-heading p {
    max-width: 390px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(10, 23, 34, 0.66);
}

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

.pillar-card {
    min-height: 0;
    padding: 26px 0 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(10, 23, 34, 0.18);
}

.pillar-card h3 {
    font-size: clamp(26px, 2.4vw, 32px);
    margin-bottom: 18px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #0a1722;
}

.pillar-card p {
    max-width: 38rem;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(10, 23, 34, 0.68);
}

.pillar-link {
    width: fit-content;
    font-weight: 600;
    color: #0a1722;
    text-decoration-color: rgba(10, 23, 34, 0.28);
    text-underline-offset: 5px;
}

.pillar-links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

/* ====== Digitale projecten ====== */

.digital-page {
    color: var(--sax-ink);
    background: #ffffff;
}

.digital-detail .site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(9, 21, 32, 0.1);
}

.digital-detail .site-header .logo a,
.digital-detail .site-header .main-nav a {
    color: var(--sax-ink);
}

.digital-detail .site-header .nav-cta {
    border-color: var(--sax-ink);
}

.digital-hero {
    padding: 196px 0 112px;
    background: #f2f5f7;
}

.digital-hero-grid,
.digital-intro-grid,
.digital-way-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(56px, 9vw, 140px);
}

.digital-hero h1,
.digital-intro h2,
.digital-way h2,
.digital-projects > .container > h2,
.digital-contact h2 {
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.digital-hero h1 {
    max-width: 9ch;
    font-size: clamp(48px, 5.6vw, 78px);
}

.digital-hero p {
    max-width: 620px;
    align-self: end;
    padding-bottom: 6px;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.65;
    color: rgba(9, 21, 32, 0.74);
}

.digital-intro,
.digital-way,
.digital-projects,
.digital-contact {
    padding: 128px 0;
}

.digital-intro h2,
.digital-way h2,
.digital-projects > .container > h2 {
    font-size: clamp(40px, 5vw, 66px);
}

.digital-intro > .digital-intro-grid > div {
    max-width: 660px;
}

.digital-intro p {
    margin-bottom: 24px;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.65;
    color: rgba(9, 21, 32, 0.76);
}

.digital-way {
    background: var(--sax-paper);
}

.digital-way ul {
    list-style: none;
    border-top: 1px solid rgba(9, 21, 32, 0.16);
}

.digital-way li {
    display: grid;
    grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(9, 21, 32, 0.16);
    font-size: 17px;
    line-height: 1.55;
    color: rgba(9, 21, 32, 0.74);
}

.digital-way strong {
    color: var(--sax-ink);
    font-size: 18px;
}

.digital-projects > .container > h2 {
    max-width: 13ch;
    margin-bottom: 68px;
}

.digital-project {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    min-height: 400px;
    border-top: 1px solid rgba(9, 21, 32, 0.18);
}

.digital-project-copy {
    padding: clamp(32px, 5vw, 68px) clamp(28px, 5vw, 72px) clamp(38px, 5vw, 68px) 0;
}

.digital-project-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.digital-project-copy p {
    max-width: 530px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(9, 21, 32, 0.72);
}

.digital-project-link {
    display: inline-flex;
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    color: var(--sax-ink);
    font-weight: 600;
    text-decoration: none;
}

.digital-project-link::after {
    content: "↗";
    margin-left: 8px;
}

.digital-project-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.digital-project-media {
    min-height: 320px;
    margin: 28px 0;
    overflow: hidden;
    background: #f4f5f5;
}

.digital-project-media img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}

.digital-project-media figcaption {
    padding: 12px 16px 14px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(9, 21, 32, 0.72);
}

.digital-project-media--gigflow {
    background: #eeedff;
}

.digital-contact {
    background: var(--sax-paper);
    border-top: 1px solid rgba(9, 21, 32, 0.12);
}

.digital-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
    gap: 28px 80px;
    align-items: end;
}

.digital-contact h2 {
    max-width: 14ch;
    margin-bottom: 16px;
    font-size: clamp(43px, 5.5vw, 72px);
}

.digital-contact p {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.65;
}

.digital-contact .sax-button--dark {
    grid-column: 2;
}

.pillar-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

/* ====== Responsive ====== */

@media (max-width: 1024px) {
    .pillars-grid {
        gap: 32px;
    }

    .concept-hero {
        padding: 144px 0 76px;
    }
}

@media (max-width: 760px) {
    .digital-hero {
        padding: 136px 0 76px;
    }

    .digital-hero-grid,
    .digital-intro-grid,
    .digital-way-grid,
    .digital-contact-inner,
    .digital-project {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .digital-intro,
    .digital-way,
    .digital-projects,
    .digital-contact {
        padding: 84px 0;
    }

    .digital-way li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .digital-projects > .container > h2 {
        margin-bottom: 42px;
    }

    .digital-project-copy {
        padding: 30px 0 0;
    }

    .digital-project-media {
        min-height: 260px;
        margin: 0 0 30px;
    }

    .digital-project-media img {
        height: 260px;
    }

    .digital-contact .sax-button--dark {
        grid-column: auto;
    }

    .concept-hero {
        min-height: 100svh;
        padding: 112px 0 46px;
    }

    .concept-intro-grid {
        grid-template-columns: 1fr;
    }

    .pillars {
        padding: 76px 0;
    }

    .pillars-heading {
        margin-bottom: 36px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pillar-card {
        padding-top: 22px;
    }

    .concept-hero-media img {
        object-position: right center;
    }

    .concept-hero-shade {
        background:
            linear-gradient(0deg, rgba(3, 10, 18, 0.94) 0%, rgba(3, 10, 18, 0.58) 48%, rgba(3, 10, 18, 0.08) 82%),
            linear-gradient(90deg, rgba(3, 10, 18, 0.28) 0%, rgba(3, 10, 18, 0) 70%);
    }

    .concept-hero h1 {
        max-width: 8ch;
        font-size: clamp(48px, 14vw, 64px);
    }

    .concept-role {
        margin-bottom: 24px;
    }

    .concept-lead {
        margin-bottom: 32px;
    }

    .concept-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .concept-btn-primary {
        width: 100%;
    }

    .concept-intro {
        padding: 76px 0;
    }

    .concept-intro-grid {
        gap: 28px;
    }
}

@media (min-width: 761px) and (max-width: 900px) and (orientation: portrait) {
    .concept-hero-media img {
        object-position: 50% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .concept-btn-primary,
    .concept-text-link,
    .pillar-card {
        transition: none;
    }
}

/* ====== Responsive Header ====== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    display: block;
}

@media (max-width: 1024px) {

    .sax-home .site-header .main-nav a {
        color: var(--color-primary);
    }

    .sax-home .site-header .main-nav a:hover {
        color: var(--color-primary);
        opacity: 0.7;
    }

    .sax-home .site-header .nav-cta {
        border-color: var(--color-primary);
    }

    /* ===== Mobile Menu Overlay ===== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        padding: 120px 40px;
        transition: right 0.3s ease;
    }

    /* The image-page header is white on the hero, but the mobile drawer is white too. */
    .header-on-image .main-nav a {
        color: var(--color-primary);
    }

    .header-on-image .main-nav a:hover,
    .header-on-image .main-nav a.active {
        color: var(--color-primary);
    }

    .header-on-image .main-nav .nav-cta {
        border-color: var(--color-primary);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .main-nav a {
        color: var(--color-primary);
        font-size: 16px;
    }

    .nav-cta {
        border-color: var(--color-primary);
    }

    .menu-toggle {
        display: flex;
        z-index: 1100;
    }

    .main-nav.active {
        right: 0;
    }
}

/* ====== Page Hero (Subpages) ====== */

.page-hero {
    padding: 200px 0 120px 0;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.page-hero.has-image {
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.page-hero.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-hero.has-image .container {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.page-title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.page-hero.has-image .page-title {
    color: #ffffff;
}

/* Header over hero image (subpages) */

.page-hero.has-image + .page-content {
    position: relative;
}


.page-hero.has-image .site-header,
.page-hero.has-image .site-header.header-solid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    border-bottom: none !important;
}

.page-hero.has-image ~ .site-header .logo a,
.page-hero.has-image ~ .site-header .main-nav a,
.page-hero.has-image ~ .site-header .nav-cta {
    color: #ffffff;
    border-color: #ffffff;
}

.page-hero.has-image ~ .site-header .menu-toggle span {
    background: #ffffff;
}

/* ====== Content Sections (Subpages) ====== */

/* ====== Contact Hero ====== */

.contact-page {
    --contact-ink: #091520;
    background: var(--contact-ink);
    color: #ffffff;
}

.contact-page .sax-button--light {
    color: var(--contact-ink);
}

.contact-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.contact-hero-image,
.contact-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image { object-fit: cover; object-position: center 30%; }

.contact-hero-shade {
    background: linear-gradient(90deg, rgba(4, 12, 20, 0.9) 0%, rgba(4, 12, 20, 0.62) 48%, rgba(4, 12, 20, 0.18) 100%), linear-gradient(0deg, rgba(4, 12, 20, 0.72) 0%, rgba(4, 12, 20, 0.08) 65%);
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 168px;
    padding-bottom: 62px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
}

.contact-hero-copy { max-width: 720px; }

.contact-eyebrow {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 11ch;
    margin-bottom: 28px;
    font-size: clamp(54px, 6.5vw, 92px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.contact-hero-copy > p:not(.contact-eyebrow) {
    max-width: 590px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.55;
}

.contact-form-wrap {
    width: min(100%, 360px);
    padding: 18px;
    background: rgba(9, 21, 32, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.contact-form label {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-text);
    font: inherit;
    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #c28b35;
    outline-offset: 2px;
}

.contact-form-submit {
    margin-top: 8px;
    cursor: pointer;
}

.contact-form-status {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

.contact-form-status--success { color: #ffffff; }
.contact-form-status--error { margin-bottom: 16px; color: #ffd2c8; }

.contact-hero-note {
    max-width: 230px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

@media (max-width: 700px) {
    .contact-hero-image { object-position: 62% 30%; }
    .contact-hero-inner { display: block; padding-top: 150px; padding-bottom: 42px; }
    .contact-hero h1 { font-size: clamp(48px, 14vw, 68px); }
    .contact-form-wrap { width: 100%; margin-top: 48px; }
}

.simple-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 48px 96px;
    align-items: end;
    padding: 88px 0 120px;
    max-width: 920px;
}

.simple-contact-copy {
    max-width: 560px;
}

.simple-contact p {
    margin-bottom: 16px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.simple-contact .simple-contact-lead {
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
}

.simple-contact-link {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, padding 0.2s ease;
}

.simple-contact-link:hover {
    padding-left: 8px;
    color: var(--color-accent);
}

@media (max-width: 700px) {
    .simple-contact {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 0 80px;
    }

    .simple-contact .simple-contact-lead {
        font-size: 24px;
    }
}

.content-section {
    margin-bottom: 80px;
    max-width: 820px;
}

.content-section .lead {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 400;
}

.content-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-primary);
    position: relative;
}

.content-section h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 12px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
}

.cta-section {
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}
