/* ==========================================================================
   FULL OF HART — GLOBAL STYLESHEET
   ========================================================================== */


/* ==========================================================================
   1. GLOBAL RESETS & TYPOGRAPHY SYSTEM
   ========================================================================== */

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

:root {
    --bg-white: #ffffff;
    --bg-cream: #f2efe6;
    --accent-lime: #b4a53e;
    --text-dark: #111821;
    --text-gray: #434b52;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-serif-number: 'Baskerville', Georgia, serif;
    --font-sans: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 48px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
p,
a,
li {
    overflow-wrap: break-word;
    word-break: break-word;
}


/* ==========================================================================
   2. GLOBAL HEADING DEFAULTS
   ========================================================================== */

h1 {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.05;
    color: var(--text-dark);
}

h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.8rem;
    line-height: 1;
    text-align: center;
    color: var(--text-dark);
}

h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-dark);
    letter-spacing: 0.4px;
}

a {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.6;
}


/* ==========================================================================
   3. UNIFORM ARROWS & NAVIGATION
   ========================================================================== */

.arrow-symbol {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 400;
    transition: none !important;
    transform: none;
}

.diag-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.diag-link .arrow-symbol {
    transform: rotate(-45deg) !important;
}

.top-accent-line {
    width: 100%;
    height: 4px;
    background-color: var(--accent-lime);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.main-nav {
    width: 100%;
    padding: 8px 40px 2px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: var(--bg-white);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-group {
    display: flex;
    align-items: center;
}

.nav-links-left {
    justify-content: flex-start;
    gap: 40px;
}

.nav-branding-center {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.nav-action-right {
    justify-content: flex-end;
}

.brand-logo {
    height: 22px;
    width: auto;
    display: block;
    margin: 6px auto;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-top: 46px;
    padding-top: 6px;
}

.arrow-symbol.down-arrow {
    transform: rotate(90deg) !important;
}


/* ==========================================================================
   4. CONTAINER MODULES & SECTIONS
   ========================================================================== */

.container {
    margin: 8px 40px 0 40px;
    background-color: color-mix(
        in srgb,
        var(--bg-cream) 50%,
        transparent
    );
    overflow: hidden;
    max-width: 100%;
}

.split-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    align-items: center;
}

.hero-block {
    padding: 60px;
}

.color-grid-section {
    width: 100%;
    margin: 40px 0;
}

.triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 440px;
    width: 100%;
}

.color-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.color-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-block img.fade-out {
    opacity: 0;
}

.philosophy-outer {
    padding: 80px 60px;
    margin: 40px 0;
    background-color: var(--bg-cream);
}

.serif-quote {
    text-align: center;
    padding: 0 60px 0 0;
}


/* ==========================================================================
   5. PORTFOLIO FEED
   ========================================================================== */

.subtitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    padding-bottom: 10px;
}

.feed-container {
    padding: 0;
    width: 100%;
    overflow: hidden;
}


/* --------------------------------------------------------------------------
   PROJECT ROW
   -------------------------------------------------------------------------- */

.project-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* --------------------------------------------------------------------------
   PROJECT IMAGE & HOVER SYSTEM
   ========================================================================== */

.project-media {
    width: 100%;
    overflow: hidden;
}

/* Base image rules */
.project-media img,
.project-image-box img,
.cs-media-item img,
.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transition: filter 0.4s ease-in-out !important;
}

/* Force Black & White on Hover */
.project-row:hover .project-media img,
.project-media:hover img,
.project-image-box:hover img,
.project-card:hover .project-image-box img {
    filter: grayscale(100%) !important;
    opacity: 1 !important;
}

/* Prevent parent links from fading image opacity on hover */
.project-media a,
.project-media a:hover,
.project-image-box a,
.project-image-box a:hover {
    opacity: 1 !important;
}


/* --------------------------------------------------------------------------
   PROJECT TEXT
   -------------------------------------------------------------------------- */

.project-text-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-cream);
    width: 100%;
}

.service-tag {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 20px;
    width: 100%;
}

.project-services {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.project-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.project-client {
    margin-bottom: 0;
    text-align: left;
}

.project-view-btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    white-space: nowrap;
    padding-left: 40px;
}


/* ==========================================================================
   SELECTED PROJECT SERIF TITLE
   ========================================================================== */

.project-client a {
    font-family: var(--font-serif) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}


/* ==========================================================================
   PROJECT CAROUSEL TITLE
   ========================================================================== */

.project-meta-box a,
.project-meta-box a.site-link {
    font-family: var(--font-sans) !important;
    font-weight: 400 !important;
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    display: inline !important;
}

.project-meta-box .arrow-symbol {
    font-family: var(--font-sans) !important;
    font-weight: 400 !important;
    font-size: 0.7rem !important;
    display: inline-block !important;
    margin-left: 3px !important;
    transition: none !important;
    transform: none !important;
}

.project-meta-box a:hover .arrow-symbol {
    transform: none !important;
}


/* ==========================================================================
   6. WORK FRAMEWORK ENGINE SLIDER
   ========================================================================== */

.framework-section {
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
}

.framework-wrapper {
    position: relative;
    width: 100%;
}

.framework-container {
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.framework-description {
    padding: 0 0 0 60px;
    text-align: left;
}

.framework-carousel-right {
    position: relative;
    width: 100%;
    padding: 0 35px;
    overflow: hidden;
}

.carousel-mask {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.framework-card-slide {
    min-width: 100%;
    border-left: 1px solid var(--text-dark);
    padding: 0 40px 0 20px;
}

.card-inner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-number-serif {
    font-family: var(--font-serif-number);
    font-weight: 300;
    font-size: 4rem;
    line-height: 1;
    text-align: left;
}

.step-body-sans {
    padding: 60px 0 0 0;
}

.step-title-sans {
    text-align: left;
}

.frame-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.frame-nav-arrow:hover {
    opacity: 1;
}

.frame-nav-arrow.arrow-left {
    left: 5px;
}

.frame-nav-arrow.arrow-right {
    right: 5px;
}

.frame-counter-display {
    font-family: var(--font-sans);
    text-align: center;
    width: 100%;
    margin-top: 40px;
}


/* ==========================================================================
   7. PROFILE AND SPLIT CONTAINERS
   ========================================================================== */

.triple-split-container {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
    background-color: var(--bg-cream);
    padding: 60px 60px;
    align-items: center;
    gap: 30px;
    height: 100%;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.triple-col-left,
.triple-col-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.profile-name {
    text-align: left;
}

a.align-right {
    display: flex;
    margin-left: auto;
    width: fit-content;
    margin-top: 20px;
}


/* ==========================================================================
   8. CAROUSEL COMPONENT
   ========================================================================== */

.projects-section {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 40px;
    width: 100%;
    overflow: hidden;
}

.project-carousel-section {
    position: relative;
    max-width: 868px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-carousel-wrapper {
    overflow: hidden;
    width: 768px;
    max-width: 100%;
}

.project-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.project-card {
    flex: 0 0 240px;
    max-width: 240px;
    width: 240px;
    display: flex;
    flex-direction: column;
}

.project-image-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: var(--bg-cream);
}

.project-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-meta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.project-desc-sans {
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--text-gray);
}

.nav-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 10;
    transition: opacity 0.2s ease;
}

.nav-arrow:hover {
    opacity: 1;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}


/* ==========================================================================
   9. FOOTER LAYOUT
   ========================================================================== */

.footer-top {
    padding: 60px 100px;
    background: var(--bg-cream);
    overflow: hidden;
}

.footer-top .split-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-body {
    padding-top: 0;
    margin: 0;
    line-height: 1.6;
}

.footer-contact {
    display: block;
    margin: 0 0 20px 0;
}

.footer-contact p,
.footer-contact a {
    font-weight: 600;
}

.footer-link {
    display: block;
    padding: 6px 0;
}

.bottom-accent-line {
    width: 100%;
    height: 4px;
    background-color: #b64326;
}

.footer-bottom {
    padding: 10px 40px;
    background-color: var(--bg-white);
    text-align: center;
    overflow: hidden;
}


/* ==========================================================================
   10. CASE STUDY SPECIFIC
   ========================================================================== */


/* --------------------------------------------------------------------------
   CASE STUDY HERO
   -------------------------------------------------------------------------- */

.cs-hero-grid {
    position: relative;
    width: 100%;
    height: 330px;
    min-height: 330px;
    max-height: 330px;
    margin-top: 38px;
    overflow: hidden;
}

.cs-hero-colors {
    display: flex;
    width: 100%;
    height: 100%;
}

.cs-color-block.slider-col {
    position: relative;
    overflow: hidden;
    flex: 1;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
}

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


/* --------------------------------------------------------------------------
   CASE STUDY TYPOGRAPHY
   -------------------------------------------------------------------------- */

.cs-meta-label,
.cs-section-label {
    font-family: var(--font-sans) !important;
    font-weight: 300 !important;
    font-size: 0.74rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-dark) !important;
    padding: 0 0 6px 0 !important;
    margin: 0 !important;
}


/* --------------------------------------------------------------------------
   CASE STUDY MAIN TITLE
   -------------------------------------------------------------------------- */

.cs-title {
    font-family: var(--font-serif) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin: 0 0 2px 0 !important;
}


/* --------------------------------------------------------------------------
   CASE STUDY SUMMARY
   -------------------------------------------------------------------------- */

.cs-summary {
    padding: 80px 60px;
    overflow: hidden;
}

.cs-summary-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
}

.cs-header-block {
    margin-bottom: 50px;
}

.cs-year {
    font-family: var(--font-sans) !important;
    font-size: 0.74rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-dark) !important;
    padding-bottom: 6px !important;
    margin: 0 !important;
}


/* --------------------------------------------------------------------------
   CASE STUDY SERVICES
   -------------------------------------------------------------------------- */

.cs-services-list {
    list-style: none;
}

.cs-services-list li {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    line-height: 1.55;
    color: var(--text-dark);
    letter-spacing: 0.6px;
}


/* --------------------------------------------------------------------------
   CASE STUDY SERIF BODY
   -------------------------------------------------------------------------- */

.cs-serif-body p {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 22px;
}


/* --------------------------------------------------------------------------
   CASE STUDY GALLERY
   -------------------------------------------------------------------------- */

.cs-gallery {
    overflow: hidden;
}

.cs-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cs-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* --------------------------------------------------------------------------
   CASE STUDY NARRATIVE TEXT BREAKS
   -------------------------------------------------------------------------- */

.cs-text-break {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    padding: 70px 60px;
    overflow: hidden;
}

.cs-text-content {
    grid-column: 2;
}

.cs-sans-body p {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.55;
    color: #333;
    margin-bottom: 16px;
    font-weight: 400;
}


/* ==========================================================================
   11. DESKTOP LAYOUT
   ========================================================================== */

@media (min-width: 950px) {

    .framework-container {
        flex-direction: row;
    }

    .framework-static-left {
        width: 40%;
        position: sticky;
        top: 120px;
    }

    .framework-carousel-right {
        width: 60%;
    }

    .framework-card-slide {
        min-width: 50%;
    }
}


@media (min-width: 900px) {

    /* --------------------------------------------------------------
       SELECTED PROJECTS — DESKTOP
       -------------------------------------------------------------- */

    .project-row {
        flex-direction: row;
        align-items: stretch;
        min-height: 520px;
    }

    .project-row .col-large {
        width: 55%;
    }

    .project-row .col-small {
        width: 45%;
    }

    .project-text-content {
        padding: 60px 8%;
    }


    /* --------------------------------------------------------------
       PROFILE
       -------------------------------------------------------------- */

    .triple-split-container {
        grid-template-columns: 34% 26% 34%;
        padding: 60px;
        height: 100%;
    }

    .profile-image {
        max-width: 70%;
    }

    .profile-name {
        padding-bottom: 100px;
    }
}


@media (max-width: 1040px) {

    .container {
        margin: 8px 20px 0 20px;
    }

    .main-nav {
        padding: 8px 20px 2px 20px;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .serif-quote {
        padding: 0 10px;
    }

    .split-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }

    .philosophy-outer {
        padding: 60px 30px;
    }

    .hero-block {
        padding: 40px 20px;
    }

    .footer-top {
        padding: 50px 40px;
    }

    .footer-top .split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .framework-description {
        padding: 0 0 0 20px;
    }

    .framework-container {
        gap: 30px;
    }
}


@media (max-width: 850px) {

    /* --------------------------------------------------------------
       MOBILE CASE STUDY HERO
       -------------------------------------------------------------- */

    .cs-hero-grid {
        height: 180px;
        min-height: 180px;
        max-height: 180px;
    }

    .cs-summary,
    .cs-text-break {
        padding: 40px 24px;
    }

    .cs-summary-container,
    .cs-text-break {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cs-text-content {
        grid-column: 1;
    }

    .cs-grid-2col {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {

    /* --------------------------------------------------------------
       MOBILE NAVIGATION
       -------------------------------------------------------------- */

    .main-nav {
        padding: 12px 16px 4px 16px;
        position: fixed;
        top: 4px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        z-index: 1000;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "nav-left nav-right"
            "nav-logo nav-logo";
        gap: 12px;
    }

    .nav-links-left {
        grid-area: nav-left;
        gap: 16px;
    }

    .nav-action-right {
        grid-area: nav-right;
    }

    .nav-branding-center {
        grid-area: nav-logo;
    }

    .brand-subtitle {
        margin-top: 4px;
    }


    /* --------------------------------------------------------------
       MOBILE IMAGE GRID
       -------------------------------------------------------------- */

    .triple-grid {
        grid-template-columns: 1fr 1fr;
        height: 250px;
    }

    .triple-grid > .color-block:nth-child(3) {
        display: none;
    }


    /* --------------------------------------------------------------
       MOBILE CONTAINER
       -------------------------------------------------------------- */

    .container {
        margin: 80px 10px 0 10px;
    }

    .hero-block {
        padding: 30px 16px 0 16px;
    }

    .philosophy-outer {
        padding: 40px 20px;
        margin: 20px 0;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    /* --------------------------------------------------------------
       MOBILE PROFILE
       -------------------------------------------------------------- */

    .triple-split-container {
        padding: 60px 20px;
    }

    .profile-image {
        width: 50%;
    }

    .profile-name {
        padding-bottom: 20px;
    }


    /* --------------------------------------------------------------
       MOBILE CASE STUDY
       -------------------------------------------------------------- */

    .cs-hero-grid {
        margin-top: 0 !important;
    }


    /* --------------------------------------------------------------
       MOBILE TYPOGRAPHY
       -------------------------------------------------------------- */

    h1,
    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .serif-quote {
        padding: 0;
        text-align: left;
    }

    .cs-meta-label,
    .cs-section-label {
        font-family: var(--font-sans) !important;
        font-weight: 300 !important;
        font-size: 0.74rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }


    /* --------------------------------------------------------------
       MOBILE PROJECT CAROUSEL
       -------------------------------------------------------------- */

    .project-carousel-section {
        padding: 0 24px;
    }

    .project-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        width: calc(50% - 8px);
    }


    /* --------------------------------------------------------------
       MOBILE FOOTER
       -------------------------------------------------------------- */

    .footer-top {
        padding: 40px 20px;
    }

    .footer-top .split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* --------------------------------------------------------------
       MOBILE SELECTED PROJECTS
       -------------------------------------------------------------- */

    .project-row {
        flex-direction: column;
    }

    .project-media {
        order: 1;
    }

    .project-text-content {
        order: 2;
        padding: 20px 30px 80px 30px;
    }
}


/* ==========================================================================
   EMAIL CAPTURE FORM STYLING
   ========================================================================== */

.email-capture-section {
    padding: 20px 20px;
    background-color: white;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.email-label {
    margin: 0;
}

.email-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    padding: 8px 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-dark);
    letter-spacing: 0.4px;
}

.email-input::placeholder {
    color: #999;
}

.submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: opacity 0.2s ease;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .email-capture-section {
        padding: 10px 20px;
        background-color: white;
    }

    .highlight-text {
        font-weight: 700;
        color: var(--text-dark);
    }

    .email-form {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .email-label {
        white-space: nowrap;
    }

    .email-input {
        flex: 1;
        width: auto;
        min-width: 320px;
    }

    .submit-btn {
        white-space: nowrap;
        align-self: center;
    }
}

#form-thank-you {
    font-size: 0.9rem;
    color: #b4a53e;
    padding: 8px 0;
    text-align: right;
}

#form-error {
    font-size: 0.9rem;
    color: #b64326;
    padding: 8px 0;
    text-align: right;
}




