@font-face {
    font-family: "Abel-Regular";
    src: url("../fonts/Abel-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-Regular";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-ExtraBold";
    src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNeue-Light";
    src: url("../fonts/HelveticaNeue-Light.woff2") format("woff2"),
         url("../fonts/HelveticaNeue-Light.woff") format("woff"),
         local("Helvetica Neue Light"),
         local("HelveticaNeue-Light");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNeue-Medium";
    src: url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"),
         url("../fonts/HelveticaNeue-Medium.woff") format("woff"),
         local("Helvetica Neue Medium"),
         local("HelveticaNeue-Medium");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNeue-Bold";
    src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"),
         url("../fonts/HelveticaNeue-Bold.woff") format("woff"),
         local("Helvetica Neue Bold"),
         local("HelveticaNeue-Bold");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNeue-Heavy";
    src: url("../fonts/HelveticaNeue-Heavy.woff2") format("woff2"),
         url("../fonts/HelveticaNeue-Heavy.woff") format("woff"),
         local("Helvetica Neue Heavy"),
         local("HelveticaNeue-Heavy");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNeue-Black";
    src: url("../fonts/HelveticaNeue-Black.woff2") format("woff2"),
         url("../fonts/HelveticaNeue-Black.woff") format("woff"),
         local("Helvetica Neue Black"),
         local("HelveticaNeue-Black");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Times-Roman";
    src: url("../fonts/OPTITimes-Roman.woff2") format("woff2"),
         url("../fonts/OPTITimes-Roman.woff") format("woff"),
         local("Times-Roman"),
         local("Times New Roman");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Times-Bold";
    src: url("../fonts/Times-Bold.woff2") format("woff2"),
         url("../fonts/Times-Bold.woff") format("woff"),
         local("Times-Bold"),
         local("Times New Roman Bold");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --ivory: #f5f1e7;
    --ink: #242424;
    --lime: #c4df19;
    --nav-height: 100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: "Montserrat-Regular", Arial, sans-serif;
    overflow-x: hidden;
    min-width: 320px;
}

a {
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #ffffff;
    z-index: 1000;
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.navbar-shell {
    max-width: 1280px;
    height: 100%;
    padding: 0 34px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.brand-logo {
    display: block;
    width: min(100%, 350px);
    height: auto;
}

.brand-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "HelveticaNeue-Black", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #262626;
    text-transform: uppercase;
}

.brand-text span {
    display: inline-block;
    transform: scaleY(0.95);
}

.brand-iso {
    width: 40px;
    height: auto;
    display: block;
}

.brand-label {
    font-family: "HelveticaNeue-Medium", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #262626;
    text-transform: uppercase;
}

.main-nav {
    gap: 21px;
}

.navbar-collapse {
    flex-grow: 0;
}

.main-nav .nav-link {
    padding: 0;
    font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    color: #1f1f1f;
    text-transform: uppercase;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: #1f1f1f;
}

.hero-section {
    margin-top: var(--nav-height);
    min-height: 485px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    padding: 40px 34px 38px;
}

.hero-heading {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-title {
    margin: 0;
    font-family: "HelveticaNeue-Light", "Abel-Regular", Arial, sans-serif;
    font-size: clamp(55px, 10vw, 90px);
    line-height: 0.96;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    max-width: 100%;
}

.intro-section {
    padding: 50px 0 72px;
    background: var(--ivory);
}

.intro-shell {
    max-width: 1280px;
    padding: 0 82px;
}

.intro-row {
    --bs-gutter-x: 84px;
    --bs-gutter-y: 0;
}

.eyebrow {
    margin: 0 0 32px;
    font-family: "HelveticaNeue-Black", Helvetica, Arial, sans-serif;
    font-size: 19px;
    line-height: 1;
    color: #171717;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.intro-title {
    
    margin: 0 0 35px;
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 3.2vw, 58px);
    line-height: 1.04;
    font-weight: 300;
    color: #252525;
    letter-spacing: 1px;
}

.intro-copy {
    /* max-width: 512px; */
    margin: 0;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.36;
    color: #2a2521;
}

.intro-copy strong {
    font-family: "Times-Bold", "Times New Roman", serif;
    font-weight: 700;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 366px;
    margin-top: 0;
}

.visual-frame {
    display: block;
    width: 100%;
    height: auto;
}

.section-kicker {
    margin: 0 0 24px;
    font-family: "HelveticaNeue-Black", Helvetica, Arial, sans-serif;
    font-size: 19px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #171717;
    text-transform: uppercase;
}

.section-kicker-light {
    color: #ffffff;
}

.philosophy-section {
    padding: 90px 0 90px;
}

.philosophy-shell {
    max-width: 1280px;
    padding-left: 34px;
    padding-right: 34px;
}

.philosophy-content {
    max-width: 760px;
    margin: 0 auto;
}

.philosophy-title {
    margin: 0 auto 34px;
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: clamp(36px, 3.6vw, 62px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: 0;
    color: #ffffff;
}

.philosophy-copy {
    max-width: 540px;
    margin: 0 auto;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.42;
    letter-spacing: 0.07em;
    color: #ffffff;
}

.roles-section {
    padding: 80px 0 80px;
    background: var(--ivory);
}

.roles-shell {
    max-width: 1280px;
    padding-left: 82px;
    padding-right: 82px;
}

.roles-title {
    margin: 0 0 58px;
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: clamp(38px, 3.5vw, 64px);
    line-height: 1.02;
    font-weight: 300;
    color: #252525;
    letter-spacing: 0;
}

.roles-row {
    --bs-gutter-x: 38px;
    --bs-gutter-y: 34px;
}

.role-card {
    max-width: 320px;
}

.role-title {
    margin: 0 0 12px;
    font-family: "HelveticaNeue-Black", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.1;
    color: #252525;
}

.role-copy {
    margin: 0;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.46;
    color: #2a2521;
}

.practice-section {
    padding: 90px 0 90px;
    background: #666126;
}

.practice-shell {
    max-width: 1280px;
    padding-left: 82px;
    padding-right: 82px;
}

.practice-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-icon-width: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.88);
}

.practice-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 0 !important;
}

.practice-button {
    position: relative;
    padding: 16px 44px 14px 0;
    background: transparent;
    box-shadow: none;
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 2.55vw, 44px);
    line-height: 1.05;
    font-weight: 300;
    color: #ffffff;
}

.practice-button:not(.collapsed) {
    color: #ffffff;
    background: transparent;
    box-shadow: none;
}

.practice-button::after {
    display: none;
}

.practice-button::before {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
    color: #ffffff;
}

.practice-button:not(.collapsed)::before {
    content: "−";
}

.practice-button span {
    display: inline-block;
}

.practice-button-multiline::before {
    top: auto;
    bottom: 14px;
    transform: none;
}

.practice-body {
    padding: 20px 0 40px;
}

.practice-body p,
.practice-list,
.practice-description {
    margin: 0;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    letter-spacing: 0.07em;
}

.practice-body p {
    margin-bottom: 14px;
}

.practice-body p strong {
    font-family: "Times-Bold", "Times New Roman", serif;
    font-weight: 700;
}

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

.practice-list li {
    margin-bottom: 12px;
}

.practice-list li::before {
    content: "• ";
}

.team-section {
    padding: 64px 0 72px;
    background: var(--ivory);
}

.team-shell {
    max-width: 1280px;
    padding-left: 82px;
    padding-right: 82px;
}

.team-row {
    --bs-gutter-x: 56px;
    --bs-gutter-y: 30px;
    margin-bottom: 68px;
}

.team-row:last-child {
    margin-bottom: 0;
}

.team-copy {
    max-width: 500px;
}

.team-copy-left {
    padding-top: 6px;
}

.team-copy-right {
    /* padding-top: 70px; */
    margin-left: auto;
}

.team-title {
    margin: 0 0 28px;
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: clamp(32px, 2.85vw, 50px);
    line-height: 1.02;
    font-weight: 300;
    color: #252525;
    letter-spacing: 0;
}

.team-text {
    margin: 0 0 28px;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.42;
    color: #2a2521;
}

.team-text strong {
    font-family: "Times-Bold", "Times New Roman", serif;
    font-weight: 700;
}

.team-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 32px;
    padding: 0 18px;
    background: #4d4d4d;
    font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
}

.team-link:hover,
.team-link:focus {
    color: #ffffff;
}

.team-visual {
    position: relative;
    width: 100%;
    max-width: 468px;
    margin-left: auto;
}

.team-visual-left {
    margin-left: 0;
}

.team-image {
    display: block;
    width: 100%;
    height: auto;
}

.team-accent {
    position: absolute;
    left: 55px;
    bottom: 0;
    width: 38px;
    height: 15px;
    background: var(--lime);
}

.contact-section {
    padding: 86px 0 62px;
    background: url("../img/contact-bg.png") center center / cover no-repeat;
}

.contact-shell {
    max-width: 1280px;
    padding-left: 82px;
    padding-right: 82px;
}

.contact-row {
    /* --bs-gutter-x: 54px; */
    --bs-gutter-y: 28px;
}

.contact-title {
    margin: 0 0 18px;
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    font-size: clamp(36px, 3.1vw, 56px);
    line-height: 1;
    font-weight: 300;
    color: #252525;
}

.contact-details {
    margin-bottom: 72px;
}

.contact-details p {
    margin: 0 0 8px;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.45;
    color: #252525;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-social a {
    color: #121212;
    font-size: 22px;
    line-height: 1;
}

.contact-visual {
    width: 100%;
    max-width: 620px;
}

.contact-logo {
    display: block;
    width: 400px;
    height: auto;
}

.contact-form-row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 14px;
}

.contact-field {
    width: 100%;
}

.contact-label {
    display: block;
    margin: 0 0 5px;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 13px;
    line-height: 1.2;
    color: #252525;
}

.contact-input {
    width: 100%;
    height: 54px;
    padding: 10px 14px;
    border: 2px solid #5b5b5b;
    background: rgba(255, 255, 255, 0.78);
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 15px;
    color: #252525;
    outline: none;
}

.contact-input:focus {
    border-color: #3f3f3f;
}

.contact-submit {
    min-width: 122px;
    height: 40px;
    border: 0;
    background: #4d4d4d;
    font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(37, 37, 37, 0.22);
}

.footer-shell {
    max-width: 1280px;
    padding-left: 34px;
    padding-right: 34px;
}

.footer-row {
    min-height: 64px;
    --bs-gutter-x: 24px;
    --bs-gutter-y: 10px;
}

.footer-copy {
    margin: 0;
    font-family: "Times-Roman", "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.4;
    color: #3a3a3a;
}

.footer-copy-right a {
    color: #3a3a3a;
}

@media (max-width: 1199.98px) {
    .navbar-shell,
    .hero-inner,
    .intro-shell,
    .philosophy-shell,
    .roles-shell,
    .practice-shell,
    .team-shell,
    .contact-shell,
    .footer-shell {
        padding-left: 24px;
        padding-right: 24px;
    }

    .intro-row {
        --bs-gutter-x: 44px;
    }

    .hero-section {
        min-height: 420px;
    }

    .intro-title {
        max-width: 500px;
    }

    .roles-row {
        --bs-gutter-x: 26px;
    }

    .team-row {
        --bs-gutter-x: 36px;
    }

    .team-copy-right {
        padding-top: 32px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --nav-height: 84px;
    }

    .site-header {
        height: auto;
        min-height: var(--nav-height);
    }

    .navbar {
        position: relative;
    }

    .navbar-shell {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        padding-top: 16px;
        padding-bottom: 8px;
        padding-left: 18px;
        padding-right: 18px;
        background: #ffffff;
        width: 100%;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        z-index: 1001;
    }

    .main-nav {
        gap: 0;
        align-items: flex-start !important;
    }

    .main-nav .nav-link {
        font-size: 14px;
        padding: 10px 0;
    }

    .hero-section {
        min-height: 360px;
    }

    .hero-title {
        font-size: clamp(42px, 8vw, 64px);
    }

    .intro-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 32px;
    }

    .visual-card {
        max-width: 360px;
        margin-top: 0;
    }

    .intro-title {
        max-width: 100%;
        font-size: clamp(36px, 5.2vw, 52px);
    }

    .intro-copy {
        max-width: 100%;
    }

    .navbar-brand {
        max-width: calc(100% - 52px);
    }

    .philosophy-section,
    .roles-section {
        padding-top: 46px;
        padding-bottom: 50px;
    }

    .philosophy-copy {
        max-width: 100%;
    }

    .roles-title {
        margin-bottom: 42px;
    }

    .role-card {
        max-width: 100%;
    }

    .practice-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .team-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .team-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 28px;
        margin-bottom: 48px;
    }

    .team-copy,
    .team-copy-right {
        max-width: 100%;
        padding-top: 0;
        margin-left: 0;
    }

    .team-visual {
        max-width: 430px;
        margin-left: 0;
    }

    .contact-section {
        padding-top: 62px;
        padding-bottom: 44px;
    }

    .contact-details {
        margin-bottom: 32px;
    }

    .contact-visual {
        max-width: 520px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --nav-height: 72px;
    }

    .navbar-shell,
    .intro-shell,
    .philosophy-shell,
    .roles-shell,
    .practice-shell,
    .team-shell,
    .contact-shell,
    .footer-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand-logo {
        width: min(100%, 230px);
    }

    .hero-section {
        min-height: 240px;
    }

    .hero-inner {
        padding-left: 0;
        padding-right: 0;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 0.98;
    }

    .intro-section {
        padding-top: 34px;
        padding-bottom: 40px;
    }

    .intro-title {
        margin-bottom: 22px;
        font-size: 28px;
        line-height: 1.08;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .intro-copy {
        font-size: 13px;
        line-height: 1.5;
    }

    .visual-card {
        max-width: 100%;
    }

    .navbar-collapse {
        top: calc(100% + 6px);
        padding-top: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-kicker {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .philosophy-section {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .philosophy-title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.12;
    }

    .philosophy-copy,
    .role-copy {
        font-size: 13px;
        line-height: 1.5;
    }

    .roles-section {
        padding-top: 36px;
        padding-bottom: 40px;
    }

    .roles-title {
        margin-bottom: 28px;
        font-size: 30px;
        line-height: 1.05;
    }

    .roles-row {
        --bs-gutter-y: 24px;
    }

    .role-title {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .practice-section {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .practice-button {
        padding: 12px 30px 12px 0;
        font-size: 22px;
        line-height: 1.08;
    }

    .practice-button::before {
        font-size: 30px;
    }

    .practice-button-multiline::before {
        bottom: 10px;
    }

    .practice-body {
        padding-bottom: 18px;
    }

    .practice-body p,
    .practice-list,
    .practice-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .team-section {
        padding-top: 36px;
        padding-bottom: 40px;
    }

    .team-row {
        margin-bottom: 34px;
    }

    .team-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 1.06;
    }

    .team-text {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.5;
    }

    .team-visual {
        max-width: 100%;
    }

    .team-accent {
        left: 32px;
        width: 36px;
        height: 14px;
    }

    .contact-section {
        padding-top: 48px;
        padding-bottom: 34px;
    }

    .contact-title {
        margin-bottom: 18px;
        font-size: 30px;
    }

    .contact-details {
        margin-bottom: 24px;
    }

    .contact-details p,
    .contact-label {
        font-size: 13px;
    }

    .contact-form-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 12px;
    }

    .contact-input {
        height: 48px;
    }

    .contact-social a {
        font-size: 20px;
    }

    .contact-visual {
        max-width: 100%;
    }

    .footer-row {
        min-height: 78px;
    }

    .footer-copy,
    .footer-copy-right {
        text-align: center;
    }
}
