       /* Base Font Declarations */
        @font-face {
            font-family: "Rough Cut clean";
            src: url("../assets/fonts/roughcut-italic-clean-webfont.woff") format("woff"), 
                 url("../assets/fonts/roughcut-italic-clean-webfont.woff2") format("woff2");
            font-weight: 400;
            font-style: italic;
        }
        @font-face {
            font-family: "Rough Cut rough";
            src: url("../assets/fonts/roughcut-italic-rough-webfont.woff") format("woff"), 
                 url("../assets/fonts/roughcut-italic-rough-webfont.woff2") format("woff2");
            font-weight: 400;
            font-style: italic;
        }
        @font-face {
            font-family: "Rough Cut clean";
            src: url("../assets/fonts/roughcut-regular-clean-webfont.woff") format("woff"), 
                 url("../assets/fonts/roughcut-regular-clean-webfont.woff2") format("woff2");
            font-weight: 400;
            font-style: normal;
        }
        @font-face {
            font-family: "Rough Cut rough";
            src: url("../assets/fonts/roughcut-regular-rough-webfont.woff") format("woff"), 
                 url("../assets/fonts/roughcut-regular-rough-webfont.woff2") format("woff2");
            font-weight: 400;
            font-style: normal;
        }

        /* CSS Reset */
        * {
            padding: 0;
            margin: 0;
            outline: 0;
            box-sizing: border-box;
        }
        *:before,
        *:after {
            box-sizing: inherit;
        }

        /* CSS Variables */
        :root {
            --fz-html: 62.5%;
            --fz-base: 1.7rem;
            --fz-base-mobile: 1.5rem;
            --fw-base: 400;
            --lh-base: 1.46;
            --ff-base: "Red Hat Display", Helvetica, Arial, sans-serif;
            --c-base: #000;
            --c-beige-1: #f7f0e4;
            --c-beige-2: #eee3ce;
            --c-green-1: #2a504e;
            --c-green-2: #44797c;
            --c-green-3: #28504d;
            --c-gray-4: #b7b7b7;
            --c-orange-1: #b06f53;
            --header-height: calc(120px + 50px);
        }
        
        @media (max-width: 1023px) {
            :root {
                --header-height: 120px;
            }
        }

        html {
            font-size: calc(var(--fz-html) * 1.2);
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }
        @media (max-width: 1199px) {
            html {
                font-size: var(--fz-html);
            }
        }

        body {
            min-width: 320px;
            font-family: var(--ff-base);
            font-weight: var(--fw-base);
            font-size: var(--fz-base);
            line-height: var(--lh-base);
            color: var(--c-base);
            background-color: var(--c-beige-1);
            letter-spacing: 0.075rem;
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
        }
        @media (max-width: 767px) {
            body {
                font-size: var(--fz-base-mobile);
            }
        }

        img,
        iframe,
        video,
        audio,
        object {
            max-width: 100%;
        }
        img,
        iframe {
            border: 0 none;
        }
        img {
            height: auto;
            display: inline-block;
            vertical-align: middle;
        }

        a {
            color: inherit;
            text-decoration: underline;
            cursor: pointer;
        }
        a:hover {
            text-decoration: none;
        }
        a:focus {
            text-decoration: underline;
        }

        /* Typography */
        h1, .h1 {
            font: 700 3.6rem/1.5 "Roboto", sans-serif;
            text-transform: uppercase;
            letter-spacing: 0;
            margin-top: 0;
            margin-bottom: 0.5rem;
            font-family: var(--ff-base);
            font-weight: 700;
            text-shadow: 1px 1px 10px #101809;
        }
        @media (max-width: 1023px) {
            h1, .h1 { font-size: 4rem; }
        }
        @media (max-width: 767px) {
            h1, .h1 { font-size: 3.36rem; }
        }

        .section-heading h2 {
            font: italic 400 4.8rem/1.3 "Rough Cut clean", sans-serif;
            margin-top: 0;
            margin-bottom: 2rem;
            color: var(--c-green-1);
            letter-spacing: 0;
            line-height: 1.3;
        }
        @media (max-width: 1023px) {
            .section-heading h2 { font-size: 4rem; }
        }
        @media (max-width: 767px) {
            .section-heading h2 { font-size: 3.36rem; }
        }

        .section-heading2 h2 {
            font: italic 400 3.4rem/1.3 "Rough Cut clean", sans-serif;
            margin-top: 0;
            margin-bottom: 2rem;
            color: var(--c-green-1);
            letter-spacing: 0;
            line-height: 1.3;
        }
        @media (max-width: 1023px) {
            .section-heading2 h2 { font-size: 3rem; }
        }
        @media (max-width: 767px) {
            .section-heading2 h2 { font-size: 2.3rem; }
        }

        h2, .h2 {
            font: italic 700 3.4rem/1.3 "Rough Cut clean", sans-serif;
            letter-spacing: 0.27rem;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 1023px) {
            h2, .h2 { font-size: 3rem; }
        }
        @media (max-width: 767px) {
            h2, .h2 { font-size: 2.3rem; }
        }

        h3, .h3 {
            font: 400 3.1rem/1 "Rough Cut clean", sans-serif;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }

        h4, .h4 {
            font: 700 2.6rem/1.1 "Roboto", sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.13rem;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }

        h5, .h5 {
            font: 700 2.3rem/1.1 "Roboto", sans-serif;
            text-transform: uppercase;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 1023px) {
            h5, .h5 { font-size: 2rem; }
        }

        h6, .h6 {
            font: 700 2.2rem/1.1 "Roboto", sans-serif;
            letter-spacing: 0.11rem;
            text-transform: uppercase;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 767px) {
            h6, .h6 { font-size: 1.8rem; }
        }

        p, ul, ol, dl, hr, table, blockquote {
            margin-bottom: calc(var(--lh-base) * 0.5em);
        }

        p:last-child,
        ul:last-child,
        ol:last-child,
        dl:last-child,
        table:last-child,
        blockquote:last-child {
            margin-bottom: 0;
        }

        /* Skip Link for Screen Readers */
        .skip-link {
            position: absolute;
            top: -80px;
            left: 6px;
            background: var(--c-green-2);
            color: var(--c-beige-1);
            padding: 8px;
            text-decoration: none;
            z-index: 1000;
            font-weight: 700;
        }
        .skip-link:focus {
            top: 6px;
        }

        /* Container */
        .shell {
            --shell-max-width: 100.4rem;
            --shell-gutter: 1.5rem;
            max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
            padding-inline: var(--shell-gutter);
            margin-inline: auto;
            width: 100%;
        }
        .shell.shell--large {
            --shell-max-width: 120.8rem;
        }
        .shell--fluid {
            max-width: none;
        }

        /* Wrapper */
        .wrapper {
            position: relative;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* Main */
        .main {
            width: 100%;
            flex-grow: 1;
            flex-shrink: 0;
            padding-top: var(--header-height);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--c-beige-1);
            z-index: 5;
        }
        @media (max-width: 1023px) {
            .header {
                padding: 0.8rem 0;
            }
        }

        .header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .header__content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
        }
        @media (max-width: 1023px) {
            .header__content {
                justify-content: flex-start;
                align-items: flex-start;
                position: fixed;
                top: var(--header-height);
                bottom: 0;
                left: 100%;
                right: 0;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background-color: var(--c-beige-1);
                overflow-y: auto;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s, visibility 0.3s, left 0.3s;
            }
            .header__content.is-active {
                opacity: 1;
                visibility: visible;
                left: 0;
            }
        }

        .logo {
            display: inline-block;
            margin-top: 2rem;
            margin-left: 0.8rem;
        }
        @media (max-width: 1023px) {
            .logo {
                position: relative;
                z-index: 1;
                margin-top: 0;
                margin-left: 0;
            }
        }
        @media (max-width: 767px) {
            .logo {
                max-width: calc(100% - 40px);
                margin-top: 20px;
                margin-bottom: 20px;
            }
        }
        
        .logo:focus {
            outline: 2px solid var(--c-green-2);
            outline-offset: 2px;
        }

        /* Navigation */
        .nav-utilities {
            background-color: var(--c-green-2);
            padding: 0 0 0 0.7rem;
            color: var(--c-beige-1);
            width: auto;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        @media (max-width: 1023px) {
            .nav-utilities {
                padding: 0;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                white-space: normal;
            }
        }

        .nav-utilities ul {
            display: flex;
            align-items: center;
            margin-bottom: 0;
            list-style: none;
            flex-shrink: 0;
        }
        @media (max-width: 1023px) {
            .nav-utilities ul {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
        }

        .nav-utilities li {
            list-style: none;
            display: inline-block;
        }
        @media (max-width: 1023px) {
            .nav-utilities li {
                width: 100%;
                display: block;
            }
        }

        .nav-utilities a {
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.06rem;
            display: inline-block;
            padding: 1.4rem 2.1rem 1.5rem;
            transition: opacity 0.2s;
            white-space: nowrap;
        }
        .nav-utilities a:focus {
            text-decoration: underline;
        }
        @media (max-width: 1023px) {
            .nav-utilities a {
                padding: 1.4rem;
                display: block;
                white-space: normal;
                font-size: 1.5rem;
            }
        }
        .nav-utilities a:hover {
            opacity: 0.8;
        }
        .nav-utilities a:focus,
        .nav a:focus,
        .nav__dropdown a:focus {
            text-transform: underline;
            text-decoration: underline;
        }

        .link-search {
            padding: 0;
            display: inline-block;
            margin-left: 1rem;
            flex-shrink: 0;
        }
        @media (max-width: 1023px) {
            .link-search {
                margin-left: 0;
                padding: 1.4rem;
                width: 100%;
            }
        }

        /* Main Navigation */
        @media (max-width: 1023px) {
            .nav {
                width: 100%;
            }
        }

        .nav ul {
            list-style: none;
            margin: 0;
        }

        .nav > ul > li > a {
            text-transform: uppercase;
            color: var(--c-green-1);
            transition: color 0.3s;
        }
        .nav > ul > li > a:hover {
            color: var(--c-green-2);
        }

        .nav li {
            display: inline-block;
            vertical-align: middle;
        }
        @media (max-width: 1023px) {
            .nav li {
                display: block;
                width: 100%;
            }
        }

        .nav a {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.091rem;
            line-height: 1.15;
            text-decoration: none;
            padding: 3.7rem 3.1rem 2.8rem;
            display: block;
        }
        .nav a:focus {
            text-decoration: underline;
        }
        @media (max-width: 1023px) {
            .nav a {
                padding: 2rem 2.5rem;
                font-size: 1.6rem;
            }
        }

        .nav > ul > li:last-child > a {
            padding-right: 0;
            margin-right: -0.2rem;
        }
        @media (max-width: 1023px) {
            .nav > ul > li:last-child > a {
                margin-right: 0;
            }
        }

        /* Dropdown */
        .has-dropdown {
            position: relative;
        }
        
        .has-dropdown > a {
            position: relative;
        }
        
        .has-dropdown > a:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 1.1rem;
            transform: translateX(-50%) rotate(45deg);
            width: 0.8rem;
            height: 0.8rem;
            border-right: 0.25rem solid var(--c-green-1);
            border-bottom: 0.25rem solid var(--c-green-1);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        @media (max-width: 1023px) {
            .has-dropdown > a:after {
                content: "";
                width: 0.7rem;
                height: 0.7rem;
                border-right: 0.2rem solid var(--c-green-1);
                border-bottom: 0.2rem solid var(--c-green-1);
                opacity: 1;
                visibility: visible;
                top: 50%;
                bottom: auto;
                left: auto;
                right: 2.5rem;
                transform: translateY(-50%) rotate(45deg);
                transition: transform 0.3s;
            }
            
            .has-dropdown.is-selected > a:after {
                transform: translateY(-50%) rotate(-135deg);
            }
        }
        
        @media (min-width: 1024px) {
            .has-dropdown:hover > a:after {
                opacity: 1;
                visibility: visible;
            }
        }

        .nav__dropdown {
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            top: calc(var(--header-height) - 20px);
            width: 120.8rem;
            max-width: 100vw;
            background-color: var(--c-green-2);
            color: var(--c-beige-2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            list-style: none;
            padding: 0;
            z-index: 1000;
        }
        
        .nav__dropdown ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        @media (max-width: 1023px) {
            .nav__dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                display: none;
                width: 100%;
                transform: none;
                background-color: rgba(68, 121, 124, 0.1);
                padding-left: 2rem;
            }
            
            .nav__dropdown ul {
                display: block;
                max-width: none;
            }
            
            .has-dropdown.is-selected .nav__dropdown {
                display: block;
            }
        }

        .nav__dropdown li {
            display: inline-block;
        }
        
        @media (max-width: 1023px) {
            .nav__dropdown li {
                display: block;
                background-color: transparent;
            }
        }

        .nav__dropdown a {
            font-size: 1.2rem;
            letter-spacing: 0.06em;
            padding: 2.1rem 3.1rem 1.7rem;
            transition: opacity 0.3s;
            color: var(--c-beige-2);
            display: block;
            text-decoration: none;
        }
        @media (max-width: 1199px) {
            .nav__dropdown a {
                padding: 2.1rem 1.8rem 1.7rem;
            }
        }
        @media (max-width: 1023px) {
            .nav__dropdown a {
                padding: 1.5rem 2rem;
                color: var(--c-green-1);
                font-size: 1.4rem;
            }
        }
        .nav__dropdown a:hover {
            opacity: 0.8;
        }

        @media (min-width: 1024px) {
            .has-dropdown:hover .nav__dropdown {
                opacity: 1;
                visibility: visible;
            }
        }

        /* Nav Trigger */
        .nav-trigger {
            width: 3.5rem;
            height: 2.2rem;
            position: relative;
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
        }
        .nav-trigger:focus {
            text-decoration: underline;
        }
        @media (max-width: 1023px) {
            .nav-trigger {
                display: inline-block;
            }
        }

        .nav-trigger span {
            position: absolute;
            left: 0;
            right: 0;
            width: 100%;
            height: 0.3rem;
            background-color: var(--c-green-2);
            display: inline-block;
            transition: top 0.3s, transform 0.3s, opacity 0.3s;
        }
        .nav-trigger span:nth-child(1) {
            top: 0;
        }
        .nav-trigger span:nth-child(2) {
            top: 1.1rem;
        }
        .nav-trigger span:nth-child(3) {
            top: 2.2rem;
        }
        .nav-trigger.is-active span:nth-child(1) {
            top: 1.5rem;
            transform: rotate(45deg);
        }
        .nav-trigger.is-active span:nth-child(2) {
            opacity: 0;
        }
        .nav-trigger.is-active span:nth-child(3) {
            top: 1.5rem;
            transform: rotate(-45deg);
        }

        /* Intro Alt (Subpage Hero) */
        .intro-alt .intro__background {
            padding-bottom: 18.3%;
            position: relative;
            z-index: 0;
        }
        @media (max-width: 767px) {
            .intro-alt .intro__background {
                padding-bottom: 48.3%;
            }
        }
        .intro-alt .intro__background img {
            position: absolute;
            left: 0;
            top: 0;
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
        .intro-alt .intro__content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            color: var(--c-beige-1);
            text-align: center;
        }
        .intro-alt .intro__content h2 {
            font-family: var(--ff-base);
            font-weight: 700;
            text-shadow: 1px 1px 10px #101809;
        }
        .intro-alt .shell {
            position: relative;
        }

        /* Nav Secondary */
        .nav-secondary {
            padding: 2.2rem 0 0;
        }
        .nav-secondary ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
        }
        .nav-secondary li {
            text-align: center;
        }
        @media (max-width: 374px) {
            .nav-secondary li {
                padding: 0 0.5rem;
            }
        }
        .nav-secondary li + li {
            margin-left: 6.3rem;
        }
        @media (max-width: 767px) {
            .nav-secondary li + li {
                margin-left: 2rem;
            }
        }
        @media (max-width: 374px) {
            .nav-secondary li + li {
                margin-left: 0;
            }
        }
        .nav-secondary a {
            display: block;
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.33;
            text-transform: uppercase;
            letter-spacing: 0.06rem;
            text-decoration: none;
            color: var(--c-green-1);
            position: relative;
        }
        .nav-secondary a:focus {
            text-decoration: underline;
        }
        .nav-secondary a:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -1.2rem;
            transform: translateX(-50%) rotate(45deg);
            width: 0.6rem;
            height: 0.6rem;
            border-right: 0.2rem solid var(--c-green-1);
            border-bottom: 0.2rem solid var(--c-green-1);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .nav-secondary a:hover:after,
        .nav-secondary .is-active a:after {
            opacity: 1;
            visibility: visible;
        }

        /* Section Text */
        .section-text {
            padding: 6.3rem 0 6.3rem;
            text-align: center;
        }
        @media (max-width: 767px) {
            .section-text {
                padding: 5rem 0;
            }
        }
        .section-text .section__content {
            margin-bottom: 2rem;
            line-height: 1.67;
        }
        .section-text .section__content h1 {
            margin-bottom: 2rem;
            color: var(--c-green-1);
            letter-spacing: 0;
            line-height: 1.3;
        }

        /* Section Slider */
        .section-slider {
            padding: 8.9rem 0 10.5rem;
            position: relative;
        }
        @media (max-width: 767px) {
            .section-slider {
                padding: 3rem 0;
            }
        }
        .section-slider:after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            height: 100%;
            width: 70.9%;
            background-color: var(--c-beige-2);
            z-index: -1;
        }
        @media (max-width: 767px) {
            .section-slider:after {
                width: 98.5%;
                height: 70%;
                top: auto;
            }
        }
        .section-slider--alt {
            padding: 3.9rem 0 5rem;
        }
        @media (max-width: 767px) {
            .section-slider--alt {
                padding: 3rem 0;
            }
        }

        /* Slider */
        .slider {
            position: relative;
        }
        .slider__slides {
            overflow: hidden;
            position: relative;
        }
        .slider__slide {
            display: none;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .slider__slide.active {
            display: flex;
        }
        .slider__image {
            max-width: 40.8%;
            flex: 0 0 40.8%;
        }
        @media (max-width: 767px) {
            .slider__image {
                max-width: 100%;
                flex: 0 0 100%;
                margin-bottom: 2rem;
            }
        }
        .slider__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slider__content {
            max-width: 54.2%;
            flex: 0 0 54.2%;
            padding-right: 10rem;
            padding-top: 8rem;
            letter-spacing: 0.075rem;
            line-height: 1.67;
        }
        .slider__content li {
            margin-left:30px;
        }
        @media (max-width: 1199px) {
            .slider__content {
                padding-top: 0;
            }
        }
        @media (max-width: 1023px) {
            .slider__content {
                padding-right: 0;
            }
        }
        @media (max-width: 767px) {
            .slider__content {
                max-width: 100%;
                flex: 0 0 100%;
            }
        }
        .slider--alt .slider__content {
            padding-top: 4rem;
            letter-spacing: 0.075rem;
            font-weight: 300;
        }
        .slider--alt .slider__content p {
            margin-bottom: 0.8rem;
        }
        .slider--alt .slider__content h2 {
            letter-spacing: 0.17rem;
            color: var(--c-green-1);
            margin-bottom: 1.6rem;
        }
        .slider__actions {
            width: 54.2%;
            margin-left: auto;
            display: flex;
            align-items: center;
            margin-top: -8.5rem;
            position: relative;
            z-index: 1;
        }
        @media (max-width: 1199px) {
            .slider__actions {
                margin-top: 0;
            }
        }
        @media (max-width: 767px) {
            .slider__actions {
                width: 100%;
                margin-top: 2rem;
            }
        }
        .slider--alt .slider__actions {
            position: static;
            margin-top: 1rem;
        }
        .slider__actions button {
            background-color: transparent;
            border: none;
            margin-right: 1.2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .slider__actions button:focus {
            outline: 2px solid var(--c-green-1);
            outline-offset: 2px;
        }
        .slider__actions button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .slider__actions button svg g {
            transition: stroke 0.3s;
        }
        .slider__actions button:hover:not(:disabled) svg g {
            stroke: var(--c-green-1);
        }
        .slider__progress {
            font-size: 1.7rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--c-green-2);
            letter-spacing: 0.085rem;
            margin-left: 0.8rem;
        }

        /* Section Staggered (Alternating Articles) */
        .section-staggered {
            padding: 0;
        }
        .section-staggered .section__content {
            padding: 0;
        }
        
        /* Article - Staggered Layout */
        .article {
            position: relative;
            padding: 6.7rem 0;
        }
        @media (max-width: 1023px) {
            .article {
                padding: 5rem 0;
            }
        }
        @media (max-width: 767px) {
            .article {
                padding: 2rem 0;
            }
        }
        .article:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 71.6vw;
            background-color: var(--c-beige-2);
            z-index: -1;
            margin-left: calc(50% - 50vw);
        }
        @media (max-width: 1023px) {
            .article:after {
                top: auto;
                height: 50%;
                width: 100vw;
            }
        }
        @media (max-width: 767px) {
            .article:after {
                height: 80%;
            }
        }
        .article .article__inner {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        @media (max-width: 1023px) {
            .article .article__inner {
                flex-direction: column-reverse;
            }
        }
        .article .article__body {
            max-width: 55.5%;
            flex: 0 0 55.5%;
        }
        @media (max-width: 1250px) {
            .article .article__body {
                max-width: 50%;
                flex: 0 0 50%;
            }
        }
        @media (max-width: 1023px) {
            .article .article__body {
                max-width: 100%;
                flex: 0 0 100%;
            }
        }
        .article .article__image {
            max-width: 49.2%;
            flex: 0 0 49.2%;
            margin-right: -10.2rem;
        }
        @media (max-width: 1250px) {
            .article .article__image {
                margin-right: 0;
                max-width: 44.5%;
                flex: 0 0 44.5%;
            }
        }
        @media (max-width: 1023px) {
            .article .article__image {
                max-width: 100%;
                flex: 0 0 100%;
                margin-bottom: 3.3rem;
            }
        }
        .article .article__image img {
            width: 100%;
            object-fit: cover;
        }
        .article .article__head {
            margin-bottom: 2.5rem;
        }
        .article .article__head h2 {
            color: var(--c-green-1);
            letter-spacing: 0.17rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article .article__head h5 {
            color: var(--c-green-2);
            font-size: 2.1rem;
            letter-spacing: 0.105rem;
            text-transform: none;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        .article .article__head h6 {
            color: var(--c-green-2);
            font-size: 2.1rem;
            letter-spacing: 0.105rem;
            text-transform: none;
        }
        .article .article__content {
            letter-spacing: 0.075rem;
            margin-bottom: 3.3rem;
        }
        .article .article__content p {
            line-height: 1.67;
            margin-bottom: 1.5rem;
        }
        .article + .article {
            margin-top: 11rem;
        }
        @media (max-width: 1023px) {
            .article + .article {
                margin-top: 3rem;
            }
        }
        .article + .article:after {
            right: 0;
            left: auto;
            margin-right: calc(50% - 50vw);
            margin-left: 0;
        }
        .article + .article .article__inner {
            flex-direction: row-reverse;
        }
        @media (max-width: 1023px) {
            .article + .article .article__inner {
                flex-direction: column-reverse;
            }
        }
        .article + .article .article__image {
            margin-left: -10.2rem;
            margin-right: 0;
        }
        @media (max-width: 1250px) {
            .article + .article .article__image {
                margin-left: 0;
            }
        }
        
        /* Article spacer for staggered sections - maintains consistent spacing */
        .article-spacer {
            padding: 0;
            margin: 0;
            height: 0;
        }
        .article-spacer + .article {
            margin-top: 11rem;
        }
        @media (max-width: 1023px) {
            .article-spacer + .article {
                margin-top: 3rem;
            }
        }

        /* Section Two Column */
        .section-two-column {
            padding: 8rem 0;
            background-color: var(--c-beige-1);
        }
        @media (max-width: 767px) {
            .section-two-column {
                padding: 5rem 0;
            }
        }
        .section-two-column--alt {
            background-color: var(--c-beige-2);
        }
        .section-two-column .section__inner {
            display: flex;
            gap: 6rem;
        }
        @media (max-width: 1023px) {
            .section-two-column .section__inner {
                gap: 4rem;
            }
        }
        @media (max-width: 767px) {
            .section-two-column .section__inner {
                flex-direction: column;
                gap: 3rem;
            }
        }
        .section-two-column .section__main {
            flex: 1;
            min-width: 0;
        }
        .section-two-column .section__aside {
            flex: 0 0 35%;
        }
        @media (max-width: 1023px) {
            .section-two-column .section__aside {
                flex: 0 0 40%;
            }
        }
        @media (max-width: 767px) {
            .section-two-column .section__aside {
                flex: 1;
            }
        }
        .section-two-column h2 {
            color: var(--c-green-1);
            margin-bottom: 2rem;
        }
        .section-two-column h3 {
            color: var(--c-green-2);
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
        }
        .section-two-column p {
            line-height: 1.67;
            margin-bottom: 1.5rem;
        }
        .section-two-column ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .section-two-column ul li {
            margin-bottom: 0.5rem;
        }
        
        /* Sidebar Card */
        .sidebar-card {
            background-color: var(--c-beige-2);
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-radius: 0.5rem;
        }
        .section-two-column--alt .sidebar-card {
            background-color: var(--c-beige-1);
        }
        .sidebar-card h4 {
            color: var(--c-green-1);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .sidebar-card p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(42, 80, 78, 0.1);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            color: var(--c-green-2);
            text-decoration: none;
            font-weight: 500;
        }
        .sidebar-card a:hover {
            text-decoration: none;
        }
        .sidebar-card a:focus {
            text-decoration: underline;
        }

        /* Section Full Container (Full Content Area Width) */
        .section-full-container {
            padding: 8rem 0;
            background-color: var(--c-beige-1);
        }
        @media (max-width: 767px) {
            .section-full-container {
                padding: 5rem 0;
            }
        }
        .section-full-container--alt {
            background-color: var(--c-beige-2);
        }
        .section-full-container--centered {
            text-align: center;
        }
        .section-full-container .section__content {
            /* Uses full shell width - no max-width constraint */
        }
        .section-full-container h2 {
            color: var(--c-green-1);
            margin-bottom: 3rem;
        }
        .section-full-container--centered h2 {
            text-align: center;
        }
        .section-full-container h3 {
            color: var(--c-green-2);
            font-size: 2.6rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }
        .section-full-container p {
            font-size: 1.7rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .section-full-container ul,
        .section-full-container ol {
            margin-left: 3rem;
            margin-bottom: 2rem;
        }
        .section-full-container li {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .section-full-container blockquote {
            border-left: 4px solid var(--c-green-2);
            padding-left: 2rem;
            margin: 3rem 0;
            font-style: italic;
            color: var(--c-green-1);
        }
        .section-full-container blockquote cite {
            font-style: normal;
            font-weight: 600;
            display: block;
            margin-top: 1rem;
        }
        .section-full-container .content-box {
            background-color: var(--c-beige-2);
            padding: 3rem;
            margin: 3rem 0;
            border-radius: 0.5rem;
        }
        .section-full-container--alt .content-box {
            background-color: var(--c-beige-1);
        }
        .section-full-container .content-highlight {
            background-color: var(--c-green-1);
            color: var(--c-beige-1);
            padding: 3rem;
            margin: 3rem 0;
            border-radius: 0.5rem;
        }
        .section-full-container .content-highlight h3 {
            color: var(--c-beige-1);
            margin-top: 0;
        }
        .section-full-container img {
            width: 100%;
            height: auto;
            margin: 2rem 0;
        }
        .section-full-container .btn-group {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        .section-full-container--centered .btn-group {
            justify-content: center;
        }
        @media (max-width: 767px) {
            .section-full-container .btn-group {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        /* Custom Columns for Full Container Section */
        .custom-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 767px) {
            .custom-columns {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin: 2rem 0;
            }
        }
        .custom-col {
            background-color: var(--c-beige-2);
            padding: 2.5rem;
            border-radius: 0.5rem;
        }
        .section-full-container--alt .custom-col {
            background-color: var(--c-beige-1);
        }
        .custom-col h3 {
            color: var(--c-green-1);
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
        }
        .custom-col ul {
            margin-left: 0;
            list-style: none;
        }
        .custom-col li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(42, 80, 78, 0.1);
            margin-bottom: 0;
        }
        .custom-col li:last-child {
            border-bottom: none;
        }

        /* Section Full Width */
        .section-full-width {
            padding: 8rem 0;
            background-color: var(--c-beige-1);
        }
        @media (max-width: 767px) {
            .section-full-width {
                padding: 5rem 0;
            }
        }
        .section-full-width--alt {
            background-color: var(--c-beige-2);
        }
        .section-full-width--centered {
            text-align: center;
        }
        .section-full-width .section__content {
            max-width: 90rem;
            margin: 0 auto;
        }
        .section-full-width h2 {
            color: var(--c-green-1);
            margin-bottom: 3rem;
        }
        .section-full-width--centered h2 {
            text-align: center;
        }
        .section-full-width h3 {
            color: var(--c-green-2);
            font-size: 2.6rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }
        .section-full-width p {
            font-size: 1.7rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .section-full-width ul,
        .section-full-width ol {
            margin-left: 3rem;
            margin-bottom: 2rem;
        }
        .section-full-width li {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .section-full-width blockquote {
            border-left: 4px solid var(--c-green-2);
            padding-left: 2rem;
            margin: 3rem 0;
            font-style: italic;
            color: var(--c-green-1);
        }
        .section-full-width blockquote cite {
            font-style: normal;
            font-weight: 600;
            display: block;
            margin-top: 1rem;
        }
        .section-full-width .content-box {
            background-color: var(--c-beige-2);
            padding: 3rem;
            margin: 3rem 0;
            border-radius: 0.5rem;
        }
        .section-full-width--alt .content-box {
            background-color: var(--c-beige-1);
        }
        .section-full-width img {
            width: 100%;
            height: auto;
            margin: 2rem 0;
        }
        .section-full-width .btn-group {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        .section-full-width--centered .btn-group {
            justify-content: center;
        }
        @media (max-width: 767px) {
            .section-full-width .btn-group {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        .btn-group {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        @media (max-width: 767px) {
            .btn-group {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .btn {
            display: inline-flex;
            vertical-align: middle;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            appearance: none;
            font-size: 1.5rem;
            line-height: 1;
            letter-spacing: 0.18rem;
            text-transform: uppercase;
            font-weight: 700;
            background-color: transparent;
            border: 0.2rem solid;
            border-radius: 0;
            padding: 1.9rem 2.3rem 1.6rem 3.3rem;
            transition: color 0.3s, background-color 0.3s;
        }
        .btn:focus {
            text-decoration: underline;
        }

        .btn--beige-outline {
            color: var(--c-beige-2);
            border: 0.2rem solid var(--c-beige-2);
        }
        .btn--beige-outline:hover {
            background-color: var(--c-beige-2);
            color: var(--c-orange-1);
        }

        .btn--green-outline {
            color: var(--c-green-2);
            border: 0.2rem solid var(--c-green-2);
        }
        .btn--green-outline:hover {
            background-color: var(--c-green-2);
            color: var(--c-beige-2);
        }

        /* Section Subscribe */
        .section-subscribe {
            padding: 6.3rem 0 5.8rem;
            position: relative;
            z-index: 1;
            background-color: var(--c-orange-1);
            color: var(--c-beige-2);
        }
        .section-subscribe .section__background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .section-subscribe .section__background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Subscribe Form */
        .subscribe .subscribe__head {
            margin-bottom: 2.5rem;
        }
        .subscribe .subscribe__head h3 {
            letter-spacing: 0;
        }
        .subscribe .subscribe__cols {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -0.9rem;
        }
        .subscribe .subscribe__col {
            padding: 0 0.9rem;
        }
        @media (max-width: 767px) {
            .subscribe .subscribe__col {
                padding: 0.9rem;
            }
        }
        .subscribe .subscribe__col--size-1 {
            max-width: 29.8%;
            flex: 0 0 29.8%;
        }
        @media (max-width: 767px) {
            .subscribe .subscribe__col--size-1 {
                max-width: 100%;
                flex: 0 0 100%;
            }
        }
        .subscribe .subscribe__col--size-2 {
            max-width: 50.2%;
            flex: 0 0 50.2%;
        }
        @media (max-width: 767px) {
            .subscribe .subscribe__col--size-2 {
                max-width: 100%;
                flex: 0 0 100%;
            }
        }
        .subscribe .subscribe__label {
            display: block;
            text-transform: uppercase;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.18rem;
            line-height: 1.6;
            margin-bottom: 0.6rem;
        }
        .subscribe .subscribe__field {
            background-color: var(--c-beige-1);
            border: none;
            color: var(--c-green-1);
            padding: 1.5rem;
            width: 100%;
            font-weight: 700;
            border-radius: 0;
        }
        .subscribe .subscribe__field:focus {
            outline: 2px solid var(--c-green-1);
            outline-offset: 2px;
        }
        .subscribe .subscribe__actions {
            margin-top: 3.3rem;
        }

        /* Section Download */
        .section-download {
            padding: 8.7rem 0 7.2rem;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 767px) {
            .section-download {
                padding: 6rem 0;
            }
        }
        .section-download .section__content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        @media (max-width: 1023px) {
            .section-download .section__content {
                max-width: 70%;
            }
        }
        @media (max-width: 767px) {
            .section-download .section__content {
                max-width: 100%;
                justify-content: center;
                text-align: center;
            }
        }
        .section-download .section__title {
            color: var(--c-green-1);
            margin-right: 5.2rem;
        }
        @media (max-width: 1023px) {
            .section-download .section__title {
                margin-bottom: 2rem;
            }
        }
        @media (max-width: 767px) {
            .section-download .section__title {
                width: 100%;
                margin-right: 0;
                margin-bottom: 2rem;
            }
        }
        .section-download .section__image {
            position: absolute;
            bottom: -3.4rem;
            right: 1.7rem;
        }
        @media (max-width: 767px) {
            .section-download .section__image {
                position: static;
                margin-top: 2rem;
                text-align: center;
            }
        }
        .section-download .section__image img {
            max-width: 20.3rem;
        }
        @media (max-width: 767px) {
            .section-download .section__image img {
                max-width: 100%;
            }
        }
        .section-download .shell {
            position: relative;
        }

        /* Feature focus styles */
        .feature a:focus {
            text-decoration: unlerline;
        }

        /* Footer */
        .footer {
            padding: 7.6rem 0 8.6rem;
            background-color: var(--c-green-2);
            color: var(--c-beige-2);
        }
        @media (max-width: 767px) {
            .footer {
                padding: 5rem 0;
            }
        }
        .footer .footer__cols {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .footer .footer__col--size-1 {
            max-width: 18.1%;
            flex: 0 0 18.1%;
        }
        @media (max-width: 767px) {
            .footer .footer__col--size-1 {
                text-align: center;
            }
        }
        .footer .footer__col--size-2 {
            max-width: 18.2%;
            flex: 0 0 18.2%;
        }
        .footer .footer__col--size-3 {
            max-width: 25.33%;
            flex: 0 0 25.33%;
        }
        .footer .footer__col--size-4 {
            max-width: 17.3%;
            flex: 0 0 17.3%;
            position: relative;
        }
        @media (max-width: 767px) {
            .footer .footer__col {
                max-width: 100%;
                flex: 0 0 100%;
                margin-bottom: 2rem;
            }
        }
        .footer .footer__logo {
            display: inline-block;
            margin-bottom: 2rem;
            margin-top: -0.6rem;
        }
        @media (max-width: 767px) {
            .footer .footer__logo {
                margin-top: 0;
            }
        }
        .footer .footer__nav ul {
            margin-bottom: 2.7rem;
            list-style: none;
        }
        @media (max-width: 767px) {
            .footer .footer__nav ul {
                margin-bottom: 2rem;
            }
        }
        .footer .footer__nav ul:last-child {
            margin-bottom: 0;
        }
        .footer .footer__nav li {
            margin-bottom: 0.3rem;
        }
        .footer .footer__nav a {
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.8;
            letter-spacing: 0.06rem;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        @media (max-width: 767px) {
            .footer .footer__nav a {
                font-size: 1.5rem;
                line-height: 2;
            }
        }
        .footer .footer__nav a:hover {
            opacity: 0.7;
        }
        .footer .footer__nav li:first-child a {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }
        .footer .slogan {
            position: absolute;
            bottom: 1.7rem;
            left: -3.9rem;
        }
        @media (max-width: 767px) {
            .footer .slogan {
                position: static;
                margin-top: 2rem;
                text-align: center;
            }
        }

.footer a:focus {
text-decoration:underline;
}

        /* Copyright */
        .copyright {
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.05rem;
            text-align: center;
            color: var(--c-beige-2);
        }
        @media (max-width: 767px) {
            .copyright {
                font-size: 1.3rem;
            }
        }

        /* Socials */
        .socials h6 {
            font: 700 1.7rem/1.6 var(--ff-base);
            letter-spacing: 0.18rem;
            margin-bottom: 1.5rem;
        }
        .socials ul {
            list-style-type: none;
            margin-left: 2.3rem;
        }
        @media (max-width: 1023px) {
            .socials ul {
                margin-left: 0;
            }
        }
        .socials li {
            display: inline-block;
        }
        .socials li + li {
            margin-left: 1.5rem;
        }
        .socials a {
            transition: opacity 0.3s;
        }
        .socials a:hover {
            opacity: 0.7;
        }
        .socials a:focus {
            border:1px solid #F2F2F2;
        }

        /* Utility Classes */
        .mtop100{margin-top: 100px;}
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        [hidden],
        .hidden {
            display: none !important;
        }

.section__aside h2 {
            font: 700 2.0rem/1.1 "Roboto", sans-serif;
            margin-top: 0;
            margin-bottom: 1rem;
            color: var(--c-green-1);
            letter-spacing: 0;
            line-height: 1.3;
            text-transform: uppercase;
}