
/* ==========================================================================
   GOLDEN ACE FOODS CASE STUDY — WEBTOS
   Matches case-studies/golden-ace-foods.html
   WEBTOS theme: black, white, grey and red
   ========================================================================== */

.golden-case-page {
    width: 100%;
    overflow: hidden;
    color: var(--color-white, #ffffff);
    background:
        radial-gradient(
            circle at 12% 5%,
            rgba(192, 21, 15, 0.055),
            transparent 24%
        ),
        #050505;
}

.golden-container {
    width: calc(100% - 4rem);
    max-width: 1400px;
    margin: 0 auto;
}

.golden-eyebrow {
    display: inline-block;
    color: var(--color-red, #c0150f);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.golden-btn {
    min-height: 50px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.golden-btn-primary {
    background: var(--color-red, #c0150f);
    border: 1px solid var(--color-red, #c0150f);
}

.golden-btn-primary:hover {
    color: #ffffff;
    background: #df1a14;
    border-color: #df1a14;
    transform: translateY(-2px);
}

.golden-btn-secondary {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.golden-btn-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.golden-breadcrumb {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #555555;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.golden-breadcrumb a {
    color: #777777;
}

.golden-breadcrumb a:hover {
    color: #ffffff;
}

.golden-breadcrumb span[aria-current="page"] {
    color: var(--color-red, #c0150f);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.golden-hero {
    position: relative;
    min-height: calc(100vh - 72px);
    padding: 6rem 0 7rem;
    display: flex;
    align-items: center;
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            #050505 0%,
            #070707 56%,
            rgba(24, 7, 7, 0.55) 100%
        );
}

.golden-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.golden-orb-one {
    top: 0;
    left: -15%;
    width: 580px;
    height: 580px;
    background: radial-gradient(
        circle,
        rgba(192, 21, 15, 0.11),
        transparent 68%
    );
}

.golden-orb-two {
    right: -15%;
    bottom: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.035),
        transparent 68%
    );
}

.golden-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.93fr)
        minmax(440px, 0.8fr);
    gap: 5rem;
    align-items: center;
}

.golden-hero-copy {
    min-width: 0;
}

.golden-pill-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.golden-mini-pill {
    padding: 7px 11px;
    color: #9d9d9d;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 100px;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.golden-hero-copy h1 {
    max-width: 820px;
    margin: 20px 0 25px;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.052em;
}

.golden-hero-copy h1 span {
    color: var(--color-red, #c0150f);
    text-shadow: 0 0 38px rgba(192, 21, 15, 0.3);
}

.golden-hero-copy > p {
    max-width: 700px;
    color: var(--color-gray-text, #9c9c9c);
    font-size: 16px;
    line-height: 1.8;
}

.golden-hero-actions {
    margin-top: 2.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.golden-focus-strip {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.golden-focus-strip > div {
    padding: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.golden-focus-strip > div:last-child {
    border-right: 0;
}

.golden-focus-strip strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.golden-focus-strip span {
    color: #606060;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Hero image */

.golden-hero-visual {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5);
}

.golden-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 546;
    object-fit: cover;
}

.golden-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.65),
            transparent 48%
        );
    pointer-events: none;
}

.golden-floating-panel {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 240px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.golden-floating-panel > span {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8b8b8b;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.golden-floating-panel i {
    width: 6px;
    height: 6px;
    display: inline-block;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.golden-floating-panel strong {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.1;
}

.golden-floating-panel small {
    margin-top: 8px;
    color: #666666;
    font-size: 9px;
    line-height: 1.5;
}

/* ==========================================================================
   Summary Bar
   ========================================================================== */

.golden-summary-bar {
    padding: 2rem 0;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.golden-summary-grid {
    display: grid;
    grid-template-columns:
        0.8fr
        1.2fr
        1fr
        1.6fr;
    gap: 2rem;
}

.golden-summary-grid > div {
    min-width: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.golden-summary-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.golden-summary-grid span {
    display: block;
    margin-bottom: 6px;
    color: #555555;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.golden-summary-grid strong {
    color: #dddddd;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

/* ==========================================================================
   Shared Headings
   ========================================================================== */

.golden-section-heading {
    max-width: 820px;
    margin-bottom: 4rem;
}

.golden-section-heading h2,
.golden-strategy-intro h2,
.golden-takeaway-panel h2,
.golden-cta-content h2 {
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.038em;
}

.golden-section-heading h2 {
    margin: 14px 0 18px;
}

.golden-section-heading > p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 15px;
    line-height: 1.75;
}

.golden-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* ==========================================================================
   Overview
   ========================================================================== */

.golden-overview-section {
    padding: 8rem 0;
}

.golden-two-column {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(0, 1fr);
    gap: 7rem;
    align-items: start;
}

.golden-copy-block {
    min-width: 0;
}

.golden-copy-block p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 15px;
    line-height: 1.8;
}

.golden-lead-copy {
    margin-bottom: 1.5rem;
    color: #d2d2d2 !important;
    font-size: 21px !important;
    line-height: 1.55 !important;
    font-weight: 500;
}

.golden-tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.golden-tags span {
    padding: 8px 12px;
    color: #9b9b9b;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
}

/* ==========================================================================
   Challenge
   ========================================================================== */

.golden-challenge-section {
    padding: 8rem 0;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.golden-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.golden-card {
    position: relative;
    min-width: 0;
    min-height: 330px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(192, 21, 15, 0.055),
            transparent 42%
        ),
        #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.golden-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 21, 15, 0.22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.golden-card > span {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #373737;
    font-family: monospace;
    font-size: 10px;
}

.golden-card-icon {
    width: 49px;
    height: 49px;
    margin-bottom: auto;
    display: grid;
    place-items: center;
    color: var(--color-red, #c0150f);
    background: rgba(192, 21, 15, 0.065);
    border: 1px solid rgba(192, 21, 15, 0.18);
    border-radius: 8px;
    font-size: 18px;
}

.golden-card h3 {
    margin-top: 2.8rem;
    margin-bottom: 0.9rem;
    color: #ffffff;
    font-size: 19px;
}

.golden-card p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 12px;
    line-height: 1.72;
}

/* ==========================================================================
   Feature Image
   ========================================================================== */

.golden-feature-image-section {
    padding: 7rem 0;
}

.golden-wide-image {
    margin: 0;
}

.golden-wide-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 546;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 14px;
}

.golden-wide-image figcaption {
    margin-top: 12px;
    color: #565656;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

/* ==========================================================================
   Strategy
   ========================================================================== */

.golden-strategy-section {
    padding: 8rem 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012),
            transparent 42%
        ),
        #080808;
}

.golden-strategy-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(0, 1.05fr);
    gap: 7rem;
    align-items: start;
}

.golden-strategy-intro {
    position: sticky;
    top: 125px;
}

.golden-strategy-intro h2 {
    margin: 14px 0 18px;
}

.golden-strategy-intro p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 14px;
    line-height: 1.78;
}

.golden-strategy-list {
    display: flex;
    flex-direction: column;
}

.golden-strategy-list article {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.golden-strategy-list article:first-child {
    padding-top: 0;
}

.golden-strategy-list article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.golden-strategy-list article > span {
    color: var(--color-red, #c0150f);
    font-family: monospace;
    font-size: 11px;
}

.golden-strategy-list h3 {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 20px;
}

.golden-strategy-list p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 13px;
    line-height: 1.72;
}

/* ==========================================================================
   Services
   ========================================================================== */

.golden-services-section {
    padding: 8rem 0;
}

.golden-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.golden-services-grid article {
    padding: 2rem;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.golden-services-grid article > span {
    display: block;
    margin-bottom: 2.2rem;
    color: var(--color-red, #c0150f);
    font-family: monospace;
    font-size: 10px;
}

.golden-services-grid h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
}

.golden-services-grid p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 12px;
    line-height: 1.7;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.golden-gallery-section {
    padding: 8rem 0;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.golden-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.golden-gallery-grid figure {
    min-width: 0;
    margin: 0;
}

.golden-gallery-grid img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 546;
    object-fit: cover;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 12px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.golden-gallery-grid figure:hover img {
    transform: translateY(-4px);
    border-color: rgba(192, 21, 15, 0.22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.golden-gallery-grid figcaption {
    padding: 12px 3px 0;
    color: #666666;
    font-size: 10px;
    line-height: 1.5;
}

/* ==========================================================================
   Impact
   ========================================================================== */

.golden-impact-section {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    isolation: isolate;
}

.golden-impact-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 850px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(192, 21, 15, 0.09),
        transparent 68%
    );
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.golden-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.golden-impact-grid article {
    min-width: 0;
    min-height: 260px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.018),
            transparent 50%
        ),
        #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.golden-impact-grid .golden-impact-featured {
    grid-column: span 2;
    min-height: 320px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(192, 21, 15, 0.11),
            transparent 43%
        ),
        #0c0c0c;
    border-color: rgba(192, 21, 15, 0.18);
}

.golden-impact-grid span {
    margin-bottom: auto;
    color: #646464;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.golden-impact-grid strong {
    margin: 2.5rem 0 1rem;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.golden-impact-grid p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 12px;
    line-height: 1.65;
}

/* ==========================================================================
   Takeaway
   ========================================================================== */

.golden-takeaway-section {
    padding: 8rem 0;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.golden-takeaway-panel {
    padding: 4rem;
    display: grid;
    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1fr);
    gap: 6rem;
    background:
        linear-gradient(
            135deg,
            rgba(192, 21, 15, 0.055),
            transparent 38%
        ),
        #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.golden-takeaway-panel h2 {
    margin-top: 14px;
}

.golden-takeaway-panel p {
    color: var(--color-gray-text, #9c9c9c);
    font-size: 14px;
    line-height: 1.8;
}

.golden-takeaway-panel p + p {
    margin-top: 1.4rem;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.golden-cta-section {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    text-align: center;
}

.golden-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 440px;
    background: radial-gradient(
        circle,
        rgba(192, 21, 15, 0.1),
        transparent 68%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.golden-cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.golden-cta-content h2 {
    margin: 15px auto 18px;
}

.golden-cta-content > p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-gray-text, #9c9c9c);
    font-size: 15px;
    line-height: 1.75;
}

.golden-cta-actions {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 1100px) {

    .golden-hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .golden-hero-visual {
        max-width: 800px;
    }

    .golden-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golden-summary-grid > div:nth-child(2) {
        padding-right: 0;
        border-right: 0;
    }

    .golden-two-column,
    .golden-strategy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .golden-strategy-intro {
        position: static;
        max-width: 800px;
    }

    .golden-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golden-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golden-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golden-impact-grid .golden-impact-featured {
        grid-column: span 2;
    }

    .golden-takeaway-panel {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 768px) {

    .golden-container {
        width: calc(100% - 2rem);
    }

    .golden-hero {
        min-height: auto;
        padding: 4rem 0 5rem;
    }

    .golden-breadcrumb {
        margin-bottom: 2.5rem;
        font-size: 8px;
    }

    .golden-hero-grid {
        gap: 3rem;
    }

    .golden-hero-copy h1 {
        margin: 16px 0 20px;
        font-size: clamp(35px, 10.5vw, 48px);
        line-height: 1.06;
    }

    .golden-hero-copy > p {
        font-size: 14px;
        line-height: 1.72;
    }

    .golden-hero-actions {
        flex-direction: column;
    }

    .golden-btn {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
    }

    .golden-focus-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golden-focus-strip > div:nth-child(2) {
        border-right: 0;
    }

    .golden-focus-strip > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .golden-floating-panel {
        right: 12px;
        bottom: 12px;
        max-width: 190px;
        padding: 12px;
    }

    .golden-summary-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .golden-summary-grid > div,
    .golden-summary-grid > div:nth-child(2) {
        padding: 0 0 1.3rem;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .golden-summary-grid > div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .golden-overview-section,
    .golden-challenge-section,
    .golden-feature-image-section,
    .golden-strategy-section,
    .golden-services-section,
    .golden-gallery-section,
    .golden-impact-section,
    .golden-takeaway-section {
        padding: 5rem 0;
    }

    .golden-section-heading {
        margin-bottom: 2.7rem;
    }

    .golden-section-heading h2,
    .golden-strategy-intro h2,
    .golden-takeaway-panel h2,
    .golden-cta-content h2 {
        font-size: clamp(29px, 8.5vw, 38px);
    }

    .golden-section-heading > p {
        font-size: 13px;
    }

    .golden-two-column,
    .golden-strategy-grid {
        gap: 2.7rem;
    }

    .golden-lead-copy {
        font-size: 18px !important;
    }

    .golden-copy-block p {
        font-size: 13px;
    }

    .golden-card-grid,
    .golden-services-grid,
    .golden-gallery-grid,
    .golden-impact-grid {
        grid-template-columns: 1fr;
    }

    .golden-card {
        min-height: auto;
        padding: 1.6rem;
    }

    .golden-card-icon {
        margin-bottom: 2.5rem;
    }

    .golden-card h3 {
        margin-top: 0;
    }

    .golden-strategy-list article {
        grid-template-columns: 33px minmax(0, 1fr);
        gap: 1rem;
    }

    .golden-strategy-list h3 {
        font-size: 18px;
    }

    .golden-services-grid article {
        padding: 1.6rem;
    }

    .golden-impact-grid .golden-impact-featured {
        grid-column: span 1;
    }

    .golden-impact-grid article {
        min-height: 230px;
        padding: 1.6rem;
    }

    .golden-takeaway-panel {
        padding: 1.7rem;
        border-radius: 12px;
    }

    .golden-takeaway-panel p {
        font-size: 13px;
    }

    .golden-cta-section {
        padding: 6rem 0;
    }

    .golden-cta-content > p {
        font-size: 13px;
    }

    .golden-cta-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Small Mobile
   ========================================================================== */

@media (max-width: 420px) {

    .golden-container {
        width: calc(100% - 1.5rem);
    }

    .golden-pill-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .golden-hero-copy h1 {
        font-size: 33px;
    }

    .golden-focus-strip {
        grid-template-columns: 1fr;
    }

    .golden-focus-strip > div,
    .golden-focus-strip > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .golden-focus-strip > div:last-child {
        border-bottom: 0;
    }

    .golden-floating-panel {
        position: static;
        max-width: none;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 0;
    }

    .golden-hero-overlay {
        display: none;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .golden-case-page *,
    .golden-case-page *::before,
    .golden-case-page *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

