/* 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;  /* Increased from 1.5rem */
    --fz-base-mobile: 1.5rem;  /* Increased from 1.3rem */
    --fw-base: 400;
    --lh-base: 1.46;
    --ff-base: "Red Hat Display", Helvetica, Arial, sans-serif;
    --ff-roboto: "Roboto", 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;
}

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 - Updated to use Roboto instead of Brother 1816 */
h1, .h1 {
    font: italic 400 4.8rem/1.3 "Rough Cut clean", sans-serif;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
@media (max-width: 1023px) {
    h1, .h1 { font-size: 4rem; }
}
@media (max-width: 767px) {
    h1, .h1 { font-size: 3.36rem; }
}

h2, .h2 {
    font: 700 3.4rem/1.5 var(--ff-roboto);
    text-transform: uppercase;
    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 var(--ff-roboto);
    text-transform: uppercase;
    letter-spacing: 0.13rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h5, .h5 {
    font: 700 2.3rem/1.1 var(--ff-roboto);
    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 var(--ff-roboto);
    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;
}

/* Container - Matching Original Width */
.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 - Matching Original */
:root {
    --header-height: calc(120px + 50px); /* Logo height + nav height */
}

@media (max-width: 1023px) {
    :root {
        --header-height: 120px; /* Increased to accommodate logo margins */
    }
}

.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: 767px) {
    .logo {
        max-width: calc(100% - 40px);
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Navigation - Matching Original */
.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;
}
@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;
}

.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;
}
@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 Section */
.intro .intro__image {
    padding-bottom: 48.3%;
    position: relative;
}
.intro .intro__image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.intro .intro__actions {
    position: absolute;
    bottom: -4.5rem;
    right: 7rem;
}
@media (max-width: 767px) {
    .intro .intro__actions {
        right: 1.5rem;
    }
}
.intro .intro__actions a + a {
    margin-left: 1.5rem;
}

.intro .shell {
    position: relative;
}
@media (max-width: 1023px) {
    .intro .shell {
        padding: 0;
    }
}

/* Button Image */
.btn-image {
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    display: inline-block;
}
.btn-image svg g[data-name="Group 83"],
.btn-image svg g[data-name="Group 80"] {
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-image:hover svg g[data-name="Group 83"],
.btn-image:hover svg g[data-name="Group 80"] {
    opacity: 1;
}
@media (max-width: 767px) {
    .btn-image svg {
        max-width: 9rem;
    }
}

/* Buttons */
.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 Text */
.section-text {
    padding: 10.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;
}

/* Video Section */
.videowrap {
    width: 100%;
    margin-bottom: 90px;
}

.responsive-embed2,
.flex-video2 {
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 57%;
    overflow: hidden;
}
.responsive-embed2 iframe,
.responsive-embed2 object,
.responsive-embed2 embed,
.responsive-embed2 video,
.flex-video2 iframe,
.flex-video2 object,
.flex-video2 embed,
.flex-video2 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.responsive-embed2.widescreen,
.flex-video2.widescreen {
    padding-bottom: 56.25%;
}

.roundit {
    border-radius: 20px;
}

/* Section Features */
.section-features {
    padding: 4.9rem 0 0.8rem;
    position: relative;
}
.section-features .section__head {
    text-align: center;
    color: var(--c-green-2);
    margin-bottom: 4.4rem;
}
.section-features:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 33.2rem;
    background-color: var(--c-beige-2);
    z-index: -1;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6.79rem;
}
@media (max-width: 1199px) {
    .features {
        gap: 4rem;
    }
}

.feature {
    flex: 0 0 28.8%;
    max-width: 28.8%;
    position: relative;
    min-height: 32.7rem;
}
@media (max-width: 1023px) {
    .feature {
        flex: 0 0 45%;
        max-width: 45%;
    }
}
@media (max-width: 767px) {
    .feature {
        flex: 0 0 auto;
        width: 100%;
        max-width: 30rem;
        margin: 0 auto;
    }
}

.feature > a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 100%;
    text-align: center;
}

.feature .feature__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 6%, 100% 96%, 50% 100%, 0% 96%, 0% 6%);
    overflow: hidden;
}

.feature .feature__image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.feature .feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature .feature__image-caption {
    width: 100%;
    color: var(--c-beige-2);
    font-family: var(--ff-base);
    font-weight: 700;
}

.feature:hover .feature__image:after {
    opacity: 1;
    visibility: visible;
}

/* Section Image */
.section-image {
    padding: 4.9rem 0 4.8rem;
    text-align: center;
}

/* 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 {
    text-decoration: underline;
}

.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;
}

/* 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.1rem;
}

.footer .footer__nav a {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.06rem;
    text-decoration: none;
    transition: opacity 0.3s;
}
.footer .footer__nav a:hover {
    opacity: 0.7;
}

.footer .footer__nav li:first-child a {
    text-transform: uppercase;
    font-weight: 700;
}

.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.2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.05rem;
    text-align: center;
    color: var(--c-beige-2);
}

/* Socials */
.socials h6 {
    font: 700 1.5rem/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;
}

/* Utility Classes */
.mtop0{margin-top: 0px;}
.mtop5{margin-top: 5px;}
.mtop10{margin-top: 10px;}
.mtop15{margin-top: 15px;}
.mtop20{margin-top: 20px;}
.mtop30{margin-top: 30px;}
.mtop40{margin-top: 40px;}
.mtop50{margin-top: 50px;}
.mtop60{margin-top: 60px;}
.mtop80{margin-top: 80px;}
.mtop100{margin-top: 100px;}

.mbot0{margin-bottom: 0px;}
.mbot5{margin-bottom: 5px;}
.mbot10{margin-bottom: 10px;}
.mbot20{margin-bottom: 20px;}
.mbot30{margin-bottom: 30px;}
.mbot40{margin-bottom: 40px;}
.mbot50{margin-bottom: 50px;}
.mbot60{margin-bottom: 60px;}
.mbot80{margin-bottom: 80px;}
.mbot100{margin-bottom: 100px;}

.tshadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* 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;
}

/* Improved Focus Styles */
.nav a:focus,
.nav-utilities a:focus,
.nav__dropdown a:focus {
    text-decoration: underline;
}

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

.logo:focus {
    outline: 2px solid var(--c-green-2);
    outline-offset: 2px;
}
.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;
}

/* FOOTER TEXT SIZE UPDATES */
.footer .footer__nav li {
    margin-bottom: 0.3rem !important;
}

.footer .footer__nav a {
    font-size: 1.4rem !important;
    line-height: 1.8 !important;
}

@media (max-width: 767px) {
    .footer .footer__nav a {
        font-size: 1.5rem !important;
        line-height: 2 !important;
    }
}

.footer .footer__nav li:first-child a {
    font-size: 1.6rem !important;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.copyright {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
}

@media (max-width: 767px) {
    .copyright {
        font-size: 1.3rem !important;
    }
}

.socials h6 {
    font-size: 1.7rem !important;
}