/* Àṣẹ Haus global UX enhancements */
:root {
    --ashe-cream: #F5F1E8;
    --ashe-gold: #C9A961;
    --ashe-black: #0A0A0A;
    --ashe-charcoal: #2A2A2A;
    --ashe-terracotta: #C67B5C;
    --ashe-serif: 'Libre Baskerville', Georgia, serif;
    --ashe-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ash-nav-menu .ash-nav-link,
.ash-nav-menu a:not(.ash-nav-cta),
.ash-mobile-menu-links a {
    text-decoration: none !important;
}

.ash-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    padding: 18px clamp(22px, 4vw, 70px);
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.ash-nav.scrolled,
.menu-open .ash-nav,
.ashe-work-page .ash-nav.scrolled,
.ashe-services-page .ash-nav.scrolled,
.ashe-process-page .ash-nav.scrolled,
.ashe-insights .ash-nav {
    background: rgba(245, 241, 232, 0.94);
    box-shadow: 0 1px 0 rgba(201, 169, 97, 0.18);
    backdrop-filter: blur(18px);
}

.ash-nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ash-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black, var(--ashe-black)) !important;
    font-family: var(--font-serif, var(--ashe-serif));
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
}

.ash-nav-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold, var(--ashe-gold));
    display: inline-block;
}

.ash-nav:not(.scrolled) .ash-nav-logo {
    color: var(--cream, var(--ashe-cream)) !important;
}

.ashe-insights .ash-nav .ash-nav-logo,
.ash-nav.scrolled .ash-nav-logo {
    color: var(--black, var(--ashe-black)) !important;
}

.ash-mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.ash-skip-link,
.ash-nav-menu,
.ash-lang-toggle,
.ash-mobile-lang {
    display: none !important;
}

.ash-nav-menu .ash-nav-link,
.ash-nav-menu a:not(.ash-nav-cta):not(.ash-lang-toggle) {
    color: var(--cream, var(--ashe-cream)) !important;
    font-family: var(--font-sans, var(--ashe-sans));
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.ash-nav.scrolled .ash-nav-menu .ash-nav-link,
.ash-nav.scrolled .ash-nav-menu a:not(.ash-nav-cta):not(.ash-lang-toggle) {
    color: var(--black, var(--ashe-black)) !important;
}

.ashe-menu-open-button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.08);
    color: var(--cream, var(--ashe-cream));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ash-nav:not(.scrolled) .ashe-menu-open-button {
    color: var(--cream, var(--ashe-cream));
}

.ash-mobile-controls .ash-nav-toggle,
.ash-nav-toggle {
    display: none !important;
}

.ash-nav.scrolled .ashe-menu-open-button {
    color: var(--black, var(--ashe-black));
    background: rgba(255, 255, 255, 0.5);
}

.ashe-menu-open-button:hover {
    transform: translateY(-2px);
    border-color: var(--gold, var(--ashe-gold));
}

.ashe-menu-open-button span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    display: block;
}

@media (min-width: 769px) {
    .ash-mobile-controls {
        display: flex !important;
    }

    .ash-mobile-controls .ash-nav-toggle {
        display: none !important;
    }
}

.ash-mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 100% !important;
    background: #151211 !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 9000 !important;
}

.ash-mobile-menu.active {
    right: 0 !important;
}

.ash-mobile-menu-label {
    color: var(--ashe-gold) !important;
    font-family: var(--ashe-sans) !important;
    font-size: 0.78rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

.ash-mobile-menu-links a,
.ash-mobile-menu-links a:visited,
.ash-mobile-menu-links a:hover,
.ash-mobile-menu-links a:focus {
    color: var(--ashe-cream) !important;
    -webkit-text-fill-color: var(--ashe-cream) !important;
    font-family: var(--ashe-serif) !important;
    text-decoration: none !important;
}

.ash-mobile-menu-close {
    position: relative !important;
    font-size: 0 !important;
    font-family: var(--ashe-sans) !important;
    text-decoration: none !important;
}

.ash-mobile-menu-close::before,
.ash-mobile-menu-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 19px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.ash-mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.ash-mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 769px) {
    .ash-mobile-menu {
        inset: 0 !important;
        width: 100% !important;
        min-height: 100vh;
        min-height: 100dvh;
        right: auto !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease !important;
    }

    .ash-mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .ash-mobile-menu-close {
        position: fixed !important;
        top: 18px;
        right: clamp(22px, 4vw, 70px);
        width: 42px !important;
        height: 42px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
        border: 1px solid rgba(201, 169, 97, 0.28) !important;
        background: rgba(10, 10, 10, 0.18) !important;
        color: var(--ashe-cream) !important;
        font-size: 1.45rem !important;
        line-height: 1 !important;
    }

    .ash-mobile-menu-inner {
        max-width: 1180px;
        margin: 0 auto;
        min-height: 100dvh;
        padding: clamp(42px, 6vw, 72px) clamp(24px, 6vw, 72px) !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .ash-mobile-menu-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        justify-content: center !important;
        align-items: flex-start !important;
        flex: 1;
    }

    .ash-mobile-menu-links a {
        font-size: clamp(3rem, 7vw, 5.8rem) !important;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .ash-mobile-menu-links .ashe-menu-portal {
        display: none !important;
    }

    .ash-mobile-menu-links .ash-mobile-menu-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .ash-mobile-menu {
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 100% !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        overflow-y: auto !important;
    }

    .ash-mobile-menu.active {
        right: 0 !important;
    }

    .ash-mobile-menu-close {
        position: static !important;
    }

    .ash-mobile-menu-inner {
        min-height: 100dvh;
        height: auto !important;
        padding: 40px 30px max(220px, env(safe-area-inset-bottom)) !important;
    }

    .ash-mobile-menu-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        align-items: stretch !important;
    }

    .ash-mobile-menu-links a:not(.ashe-menu-portal):not(.ash-mobile-menu-cta) {
        font-size: clamp(2.65rem, 12vw, 4rem) !important;
        line-height: 0.92;
        width: fit-content;
    }

    .ash-mobile-menu-links .ashe-menu-portal,
    .ash-mobile-menu-links .ash-mobile-menu-cta {
        font-family: var(--font-sans, var(--ashe-sans)) !important;
        font-size: 0.82rem !important;
        line-height: 1 !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-radius: 999px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .ash-mobile-menu-links .ashe-menu-portal {
        margin-top: 18px;
        padding: 16px 24px;
        border: 1px solid rgba(201, 169, 97, 0.32);
        color: rgba(245, 241, 232, 0.78) !important;
    }

    .ash-mobile-menu-links .ash-mobile-menu-cta {
        margin-top: 0 !important;
        padding: 18px 24px !important;
        background: var(--ashe-gold) !important;
        color: var(--ashe-black) !important;
        -webkit-text-fill-color: var(--ashe-black) !important;
        font-family: var(--ashe-sans) !important;
    }
}

.ashe-footer-note {
    max-width: 520px;
    margin-top: 18px;
    color: rgba(245, 241, 232, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.ashe-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.ashe-footer-portal,
.ashe-footer-insights {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0 0 4px;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.5);
}

.ashe-footer-portal {
    background: transparent;
    color: var(--gold, var(--ashe-gold));
}

.ashe-footer-insights {
    color: var(--cream, var(--ashe-cream));
}

.ashe-mode-toggle {
    position: static;
    z-index: 1;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    margin-top: 22px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(245, 241, 232, 0.15);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.ashe-mode-toggle button {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    color: rgba(245, 241, 232, 0.7);
    background: transparent;
    font: 700 0.82rem var(--font-sans, var(--ashe-sans));
    cursor: pointer;
}

.ashe-mode-toggle button.active {
    background: var(--cream, var(--ashe-cream));
    color: var(--black, var(--ashe-black));
}

.ashe-machine-panel {
    position: static;
    width: 100%;
    max-height: none;
    overflow: auto;
    z-index: 1;
    padding: 22px;
    margin-top: 18px;
    border-radius: 8px;
    background: #060606;
    border: 1px solid rgba(201, 169, 97, 0.32);
    color: #f4efe5;
    box-shadow: none;
    font: 700 0.9rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    line-height: 1.65;
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body.menu-open .ashe-mode-toggle,
body.menu-open .ashe-machine-panel {
    visibility: hidden;
}

.ashe-machine-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ashe-machine-line {
    display: block;
    white-space: pre-wrap;
}

.ashe-machine-line.gold {
    color: var(--gold, var(--ashe-gold));
}

.ashe-machine-line.dim {
    color: rgba(245, 241, 232, 0.52);
}

.ashe-machine-caret::after {
    content: '_';
    color: var(--gold, var(--ashe-gold));
    animation: asheBlink 0.8s steps(2, start) infinite;
}

@keyframes asheBlink {
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .ashe-mode-toggle {
        position: fixed;
        right: 10px;
        bottom: 78px;
        z-index: 9997;
        margin-top: 0;
        transform: scale(0.9);
        transform-origin: bottom right;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
    }

    .ashe-machine-panel {
        position: fixed;
        inset: auto 10px 138px 10px;
        width: auto;
        max-height: min(520px, calc(100dvh - 180px));
        z-index: 9996;
        box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
        pointer-events: auto;
    }
}

.ashe-human-systems {
    padding: clamp(56px, 8vw, 110px) clamp(22px, 6vw, 70px);
    background: var(--ashe-cream);
    color: var(--ashe-black);
    border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}

.ashe-human-systems-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
}

.ashe-human-systems .ashe-kicker {
    color: var(--ashe-gold);
}

.ashe-human-systems h2 {
    margin: 16px 0 0;
    font-family: var(--ashe-serif);
    font-size: clamp(2.45rem, 5vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.ashe-human-systems-lede {
    margin-top: 26px;
    padding: clamp(22px, 3vw, 30px);
    background: #151211;
    color: var(--ashe-cream);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.24);
}

.ashe-human-systems p {
    color: rgba(10, 10, 10, 0.68);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.75;
}

.ashe-human-systems-lede p {
    margin: 0;
    color: rgba(245, 241, 232, 0.82);
}

.ashe-human-proof {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 169, 97, 0.24);
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.9rem;
    line-height: 1.65;
}

.ashe-human-proof strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ashe-gold);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 840px) {
    .ashe-human-systems {
        padding: 72px 22px 96px;
    }

    .ashe-human-systems-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ashe-human-systems h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
        max-width: 9ch;
    }

    .ashe-human-systems-lede {
        margin-top: 0;
        padding: 24px;
    }

}

.ashe-cookie-notice {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(430px, calc(100vw - 28px));
    padding: 10px 10px 10px 14px;
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 999px;
    background: rgba(245, 241, 232, 0.94);
    color: var(--ashe-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    font: 700 0.78rem var(--ashe-sans);
}

.ashe-cookie-notice p {
    margin: 0;
    line-height: 1.25;
}

.ashe-cookie-notice button {
    border: 0;
    border-radius: 999px;
    background: var(--ashe-black);
    color: var(--ashe-cream);
    padding: 8px 12px;
    font: 800 0.72rem var(--ashe-sans);
    cursor: pointer;
}

.ash-philosophy-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold, var(--ashe-gold));
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 12px rgba(201, 169, 97, 0.08),
        0 0 46px rgba(201, 169, 97, 0.32);
    z-index: 2;
}

.ash-philosophy-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold, var(--ashe-gold));
    box-shadow: 0 0 18px rgba(201, 169, 97, 0.45);
}

@media (max-width: 768px) {
    .ashe-cookie-notice {
        bottom: max(14px, env(safe-area-inset-bottom));
        right: 8px;
        max-width: none;
        gap: 8px;
        padding: 8px 8px 8px 12px;
        font-size: 0.66rem;
        left: 8px;
        justify-content: space-between;
        z-index: 10000;
    }

    .ashe-cookie-notice button {
        flex: 0 0 auto;
        padding: 7px 10px;
        font-size: 0.68rem;
    }
}

.ashe-insights,
.ashe-article-shell {
    min-height: 100vh;
    background: var(--ashe-cream);
    color: var(--ashe-black);
    font-family: var(--ashe-sans);
}

.ashe-insights .ash-mobile-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
}

.ashe-insights .ash-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ashe-insights-hero {
    padding: clamp(140px, 15vw, 205px) clamp(24px, 7vw, 90px) clamp(72px, 9vw, 120px);
    background: var(--ashe-black);
    color: var(--ashe-cream);
}

.ashe-insights-hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: end;
}

.ashe-kicker,
.ashe-back-link,
.ashe-card-date {
    display: inline-block;
    color: var(--ashe-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

.ashe-insights-hero h1 {
    max-width: 980px;
    margin: 18px 0 24px;
    font-family: var(--ashe-serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.ashe-insights-hero p {
    max-width: 620px;
    color: rgba(245, 241, 232, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.ashe-insights-hero-copy {
    padding: 28px 0 10px;
    border-top: 1px solid rgba(201, 169, 97, 0.32);
}

.ashe-insights-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.ashe-insights-topics a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 999px;
    color: rgba(245, 241, 232, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.ashe-featured-insight {
    padding: clamp(24px, 5vw, 70px);
    background: var(--ashe-cream);
}

.ashe-featured-insight-card {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    min-height: 520px;
    color: inherit;
    text-decoration: none;
    background: #151211;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.24);
}

.ashe-featured-insight-media {
    position: relative;
    min-height: 360px;
    background:
        linear-gradient(135deg, rgba(201, 169, 97, 0.22), rgba(198, 123, 92, 0.18)),
        #0a0a0a;
    overflow: hidden;
}

.ashe-featured-insight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.82;
}

.ashe-featured-insight-media span {
    position: absolute;
    left: clamp(24px, 4vw, 54px);
    bottom: clamp(24px, 4vw, 54px);
    color: var(--ashe-gold);
    font-family: var(--ashe-serif);
    font-size: clamp(2.7rem, 7vw, 6rem);
    line-height: 1;
}

.ashe-featured-insight-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 64px);
}

.ashe-featured-insight-copy h2 {
    margin: 20px 0;
    color: var(--ashe-cream);
    font-family: var(--ashe-serif);
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.ashe-featured-insight-copy p {
    color: rgba(245, 241, 232, 0.74);
    font-size: 1.02rem;
    line-height: 1.75;
}

.ashe-insights-library {
    background: var(--ashe-cream);
    padding-bottom: clamp(40px, 7vw, 90px);
}

.ashe-insights-library-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 64px) clamp(24px, 5vw, 70px) clamp(20px, 4vw, 46px);
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
    gap: clamp(24px, 6vw, 78px);
    align-items: end;
}

.ashe-insights-library-header h2 {
    margin: 14px 0 0;
    font-family: var(--ashe-serif);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.ashe-insights-library-header p {
    margin: 0;
    color: rgba(10, 10, 10, 0.64);
    line-height: 1.75;
}

.ashe-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 70px);
    background: transparent;
}

.ashe-insight-card,
.ashe-insight-empty {
    background: rgba(255, 255, 255, 0.54);
    min-height: 360px;
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ashe-insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.42);
    box-shadow: 0 22px 50px rgba(10, 10, 10, 0.08);
}

.ashe-insight-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(24px, 4vw, 42px);
    color: inherit;
    text-decoration: none;
}

.ashe-insight-card figure {
    margin: 24px 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ashe-cream);
}

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

.ashe-insight-card h2,
.ashe-insight-empty h2 {
    margin: 20px 0 16px;
    font-family: var(--ashe-serif);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ashe-insight-card p,
.ashe-insight-empty p {
    color: rgba(10, 10, 10, 0.68);
    line-height: 1.7;
}

.ashe-card-link {
    margin-top: auto;
    padding-top: 28px;
    color: var(--ashe-terracotta);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ashe-insight-empty {
    grid-column: 1 / -1;
    padding: clamp(30px, 6vw, 70px);
}

.ashe-article {
    padding: clamp(140px, 14vw, 190px) clamp(24px, 7vw, 90px) clamp(80px, 10vw, 140px);
}

.ashe-article-header {
    max-width: 980px;
    margin: 0 auto 44px;
}

.ashe-article-header time {
    display: block;
    margin-top: 22px;
    color: rgba(10, 10, 10, 0.55);
    font-weight: 700;
}

.ashe-article-header h1 {
    margin: 20px 0;
    font-family: var(--ashe-serif);
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.ashe-article-header p {
    max-width: 760px;
    color: var(--ashe-charcoal);
    font-size: 1.2rem;
    line-height: 1.7;
}

.ashe-article-image {
    max-width: 1180px;
    margin: 0 auto 54px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.ashe-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ashe-article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--ashe-charcoal);
}

.ashe-article-content h2,
.ashe-article-content h3 {
    margin: 48px 0 18px;
    color: var(--ashe-black);
    font-family: var(--ashe-serif);
    line-height: 1.15;
}

.ashe-article-content a {
    color: var(--ashe-terracotta);
    font-weight: 800;
}

@media (max-width: 900px) {
    .ashe-insights-hero-grid,
    .ashe-featured-insight-card,
    .ashe-insights-library-header {
        grid-template-columns: 1fr;
    }

    .ashe-featured-insight-card {
        min-height: 0;
    }

    .ashe-insights-grid {
        grid-template-columns: 1fr;
    }
}

/* === Elevated shared polish for Services, Process, Work, and Start Project templates === */
.ashe-work-intro {
    position: relative;
    padding: clamp(138px, 15vw, 210px) clamp(24px, 7vw, 90px) clamp(72px, 9vw, 126px);
    background:
        radial-gradient(circle at 78% 18%, rgba(198, 123, 92, 0.14), transparent 32%),
        radial-gradient(circle at 12% 22%, rgba(201, 169, 97, 0.16), transparent 30%),
        #0a0a0a;
    color: var(--ashe-cream);
    overflow: hidden;
}

.ashe-work-intro::after {
    content: "";
    position: absolute;
    inset: auto clamp(24px, 7vw, 90px) 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.52), transparent);
}

.ashe-work-intro-grid {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: clamp(36px, 7vw, 100px);
    align-items: end;
}

.ashe-kicker {
    display: inline-block;
    color: var(--ashe-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ashe-work-intro h1 {
    margin: 20px 0 0;
    font-family: var(--ashe-serif);
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    max-width: 780px;
}

.ashe-work-intro-copy {
    padding-top: 28px;
    border-top: 1px solid rgba(201, 169, 97, 0.32);
}

.ashe-work-intro-copy p {
    margin: 0 0 18px;
    color: rgba(245, 241, 232, 0.78);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.75;
}

.ashe-work-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--ashe-gold);
    color: var(--ashe-black);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ashe-work-showcase {
    padding: clamp(64px, 8vw, 112px) clamp(24px, 5vw, 70px);
    background: var(--ashe-cream);
}

.ashe-work-showcase-header {
    width: min(1560px, 100%);
    margin: 0 auto clamp(28px, 5vw, 56px);
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
}

.ashe-work-showcase-header h2 {
    margin: 0;
    font-family: var(--ashe-serif);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.ashe-work-case-grid {
    width: min(1560px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.ashe-work-case {
    min-height: 520px;
    padding: clamp(26px, 4vw, 48px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
        var(--ashe-cream);
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease, transform 0.25s ease;
}

.ashe-work-case:hover {
    background: #fffaf0;
    transform: translateY(-3px);
}

.ashe-work-case-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(10, 10, 10, 0.5);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ashe-work-case h3 {
    margin: auto 0 22px;
    font-family: var(--ashe-serif);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ashe-work-case p {
    margin: 0 0 28px;
    color: rgba(10, 10, 10, 0.68);
    line-height: 1.72;
}

.ashe-work-case ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ashe-work-case li {
    padding: 8px 12px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ashe-work-case.maktub { border-top: 4px solid #1F7A8C; }
.ashe-work-case.ddmf { border-top: 4px solid #533A7B; }
.ashe-work-case.icc { border-top: 4px solid #1B4D3E; }

.ashe-work-showcase-cta {
    width: min(1560px, 100%);
    margin: clamp(28px, 5vw, 56px) auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ashe-work-showcase-cta p {
    margin: 0;
    color: rgba(10, 10, 10, 0.65);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.ashe-work-showcase-cta a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--ashe-black);
    color: var(--ashe-cream);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-template-pages-service-page-php .ash-hero {
    min-height: 92vh !important;
    background:
        radial-gradient(circle at 76% 16%, rgba(198, 123, 92, 0.16), transparent 34%),
        radial-gradient(circle at 18% 22%, rgba(201, 169, 97, 0.18), transparent 30%),
        #0a0a0a !important;
}

body.page-template-pages-service-page-php .ash-hero-title {
    font-size: clamp(3.2rem, 8vw, 7.4rem) !important;
    line-height: 1.03 !important;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

body.page-template-pages-service-page-php .ash-hero-intro {
    max-width: 760px !important;
}

body.page-template-pages-service-page-php .ash-suite {
    padding: clamp(70px, 8vw, 118px) clamp(24px, 5vw, 70px) !important;
}

body.page-template-pages-service-page-php .ash-suite-container {
    max-width: 1560px !important;
    padding: 0 !important;
}

body.page-template-pages-service-page-php .ash-suite-header {
    max-width: none !important;
    margin: 0 0 clamp(28px, 5vw, 54px) !important;
    text-align: left !important;
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
}

body.page-template-pages-service-page-php .ash-suite-number {
    opacity: 1 !important;
    font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
    font-family: var(--ashe-sans) !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

body.page-template-pages-service-page-php .ash-suite-title {
    margin: 14px 0 0 !important;
    font-size: clamp(2.6rem, 5.8vw, 5.4rem) !important;
    line-height: 1.05 !important;
}

body.page-template-pages-service-page-php .ash-suite-tagline {
    margin: 0 0 14px !important;
    font-family: var(--ashe-sans) !important;
    font-style: normal !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
}

body.page-template-pages-service-page-php .ash-suite-description {
    font-size: clamp(1rem, 1.4vw, 1.16rem) !important;
    line-height: 1.72 !important;
}

body.page-template-pages-service-page-php .ash-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1px !important;
    background: rgba(201, 169, 97, 0.18);
    border: 1px solid rgba(201, 169, 97, 0.18);
}

body.page-template-pages-service-page-php .ash-service-card {
    min-height: 230px;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.055) !important;
    padding: clamp(24px, 3vw, 38px) !important;
}

body.page-template-pages-service-page-php .ash-suite:not(.ash-suite-dark):not(.ash-suite-accent) .ash-service-card {
    background: rgba(255, 255, 255, 0.68) !important;
}

body.page-template-pages-service-page-php .ash-service-card:hover {
    transform: none !important;
    background: rgba(201, 169, 97, 0.1) !important;
}

.ash-next-section {
    padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 90px);
    background: #0a0a0a;
    color: var(--ashe-cream);
}

.ash-next-content {
    width: min(1220px, 100%);
    margin: 0 auto;
}

.ash-next-content h2 {
    max-width: 720px;
    margin: 18px 0 clamp(34px, 5vw, 62px);
    color: var(--ashe-cream);
    font-family: var(--ashe-serif);
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.ash-next-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(201, 169, 97, 0.22);
    border: 1px solid rgba(201, 169, 97, 0.22);
}

.ash-next-grid article {
    min-height: 260px;
    padding: clamp(26px, 4vw, 46px);
    background: #0f0d0c;
}

.ash-next-grid span {
    color: var(--ashe-gold);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ash-next-grid h3 {
    margin: 34px 0 14px;
    color: var(--ashe-cream);
    font-family: var(--ashe-serif);
    font-size: clamp(1.55rem, 2.5vw, 2.3rem);
    line-height: 1.12;
}

.ash-next-grid p {
    margin: 0;
    color: rgba(245, 241, 232, 0.7);
    line-height: 1.68;
}

.ash-footer {
    background: #050505 !important;
    color: var(--ashe-cream) !important;
    padding: clamp(72px, 8vw, 112px) clamp(24px, 4vw, 60px) 38px !important;
    border-top: 1px solid rgba(201, 169, 97, 0.16) !important;
}

.ash-footer-main {
    width: min(1600px, 100%) !important;
    margin: 0 auto clamp(44px, 6vw, 72px) !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr) !important;
    gap: clamp(34px, 7vw, 92px) !important;
    align-items: start !important;
}

.ash-footer-brand h3 {
    margin: 0 0 18px !important;
    color: var(--ashe-gold) !important;
    font-family: var(--ashe-serif) !important;
    font-size: clamp(2.6rem, 5vw, 4.8rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
}

.ash-footer-brand p {
    max-width: 560px !important;
    margin: 0 !important;
    color: rgba(245, 241, 232, 0.68) !important;
    font-size: clamp(1rem, 1.6vw, 1.16rem) !important;
    line-height: 1.72 !important;
}

.ash-footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(24px, 4vw, 52px) !important;
}

.ash-footer-column h4 {
    margin: 0 0 22px !important;
    color: var(--ashe-gold) !important;
    font-family: var(--ashe-serif) !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}

.ash-footer-column a {
    display: block !important;
    width: fit-content !important;
    margin: 0 0 14px !important;
    color: rgba(245, 241, 232, 0.66) !important;
    text-decoration: none !important;
    font-size: clamp(1rem, 1.5vw, 1.14rem) !important;
    line-height: 1.55 !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
}

.ash-footer-column a:hover {
    color: var(--ashe-cream) !important;
    transform: translateX(3px) !important;
}

.ash-footer-justice {
    width: min(1600px, 100%) !important;
    margin: 0 auto 34px !important;
    padding: 28px 0 18px !important;
    background: transparent !important;
    border-top: 1px solid rgba(201, 169, 97, 0.14) !important;
    border-bottom: 0 !important;
    text-align: center !important;
}

.ash-footer-justice p {
    margin: 8px 0 !important;
    color: rgba(245, 241, 232, 0.7) !important;
    line-height: 1.62 !important;
}

.ash-footer-bottom {
    width: min(1600px, 100%) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-top: 0 !important;
    color: rgba(245, 241, 232, 0.44) !important;
    text-align: center !important;
}

@media (max-width: 900px) {
    .ashe-work-intro-grid,
    .ashe-work-showcase-header,
    .ash-footer-main,
    .ash-footer-links {
        grid-template-columns: 1fr !important;
    }

    .ashe-work-intro {
        padding-top: 118px;
    }

    .ashe-work-intro h1 {
        font-size: clamp(3.1rem, 16vw, 5rem);
        line-height: 1.04;
    }

    .ash-next-grid {
        grid-template-columns: 1fr;
    }

    .ashe-work-case-grid,
    body.page-template-pages-service-page-php .ash-suite-header,
    body.page-template-pages-service-page-php .ash-services-grid {
        grid-template-columns: 1fr !important;
    }

    .ashe-work-case {
        min-height: 360px;
    }

    .ashe-work-showcase-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .ash-footer {
        padding-bottom: 92px !important;
    }
}

/* === Rebuilt Work / Services / Process templates === */
.ash-preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ashe-black);
    transition: opacity 0.8s ease;
}

.ash-preloader-logo {
    color: var(--ashe-gold);
    font-family: var(--ashe-serif);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 34px;
}

.ash-preloader-progress {
    width: 190px;
    height: 2px;
    background: rgba(201, 169, 97, 0.18);
    overflow: hidden;
}

.ash-preloader-bar {
    width: 100%;
    height: 100%;
    background: var(--ashe-gold);
    transform-origin: left;
}

.ash-preloader-text {
    margin-top: 18px;
    color: rgba(201, 169, 97, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ash-preloader.complete {
    opacity: 0;
    pointer-events: none;
}

.ash-site {
    opacity: 1;
}

.ashe-system-page {
    background: var(--ashe-cream);
    color: var(--ashe-black);
    overflow: hidden;
}

.ashe-system-hero {
    min-height: 92vh;
    display: grid;
    align-items: end;
    padding: clamp(132px, 15vw, 210px) clamp(24px, 5vw, 70px) clamp(58px, 8vw, 104px);
    background:
        radial-gradient(circle at 76% 16%, rgba(198, 123, 92, 0.16), transparent 34%),
        radial-gradient(circle at 18% 22%, rgba(201, 169, 97, 0.18), transparent 30%),
        #0a0a0a;
    color: var(--ashe-cream);
}

.ashe-system-hero-grid {
    width: min(1600px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.66fr);
    gap: clamp(34px, 7vw, 110px);
    align-items: end;
}

.ashe-system-kicker {
    display: inline-block;
    color: var(--ashe-gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ashe-system-hero h1 {
    max-width: 1060px;
    margin: 18px 0 0;
    font-family: var(--ashe-serif);
    font-size: clamp(3.4rem, 8.2vw, 7.6rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.ashe-system-copy {
    padding-top: 28px;
    border-top: 1px solid rgba(201, 169, 97, 0.34);
}

.ashe-system-copy p,
.ashe-system-cta p {
    margin: 0 0 28px;
    color: rgba(245, 241, 232, 0.78);
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    line-height: 1.75;
}

.ashe-system-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.42);
    color: var(--ashe-cream);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ashe-system-button.primary {
    background: var(--ashe-gold);
    border-color: var(--ashe-gold);
    color: var(--ashe-black);
}

.ashe-work-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(1600px, calc(100% - clamp(48px, 10vw, 140px)));
    margin: clamp(30px, 5vw, 70px) auto;
    background: rgba(201, 169, 97, 0.22);
    border: 1px solid rgba(201, 169, 97, 0.22);
}

.ashe-work-index-card {
    min-height: 132px;
    padding: clamp(18px, 2.2vw, 30px);
    background: rgba(255, 255, 255, 0.5);
    color: var(--ashe-black);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 4px solid var(--case-color);
}

.ashe-work-index-card span,
.ashe-work-index-card em {
    color: rgba(10, 10, 10, 0.5);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ashe-work-index-card strong {
    font-family: var(--ashe-serif);
    font-size: clamp(1.45rem, 2.4vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.ashe-case {
    width: min(1600px, calc(100% - clamp(48px, 10vw, 140px)));
    margin: 0 auto clamp(44px, 7vw, 92px);
    display: grid;
    grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.54fr);
    gap: 1px;
    background: rgba(201, 169, 97, 0.24);
    border: 1px solid rgba(201, 169, 97, 0.24);
}

.ashe-case-copy {
    padding: clamp(30px, 5vw, 70px);
    background: #0a0a0a;
    color: var(--ashe-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ashe-case-copy h2 {
    margin: 20px 0 24px;
    font-family: var(--ashe-serif);
    font-size: clamp(2.3rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.ashe-case-copy p {
    color: rgba(245, 241, 232, 0.72);
    line-height: 1.75;
    max-width: 640px;
}

.ashe-case-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
}

.ashe-case-copy li {
    padding: 8px 12px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 999px;
    color: rgba(245, 241, 232, 0.76);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ashe-case-media {
    padding: clamp(18px, 3vw, 34px);
    background: var(--case-color);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 1.6vw, 18px);
    align-content: center;
}

.ashe-case-media figure {
    margin: 0;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ashe-case-media figure.large {
    grid-column: 1 / -1;
    min-height: 320px;
}

.ashe-case-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 18px;
}

.ashe-case-media figure.large img {
    object-fit: cover;
    padding: 0;
}

.ashe-services-grid {
    width: min(1600px, calc(100% - clamp(48px, 10vw, 140px)));
    margin: clamp(58px, 8vw, 112px) auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(201, 169, 97, 0.22);
    border: 1px solid rgba(201, 169, 97, 0.22);
}

.ashe-services-grid article {
    min-height: 420px;
    padding: clamp(24px, 3vw, 44px);
    background: rgba(255, 255, 255, 0.54);
    display: flex;
    flex-direction: column;
}

.ashe-services-grid span,
.ashe-process-timeline span {
    color: var(--ashe-gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ashe-services-grid h2 {
    margin: auto 0 20px;
    font-family: var(--ashe-serif);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ashe-services-grid p,
.ashe-path-list p,
.ashe-process-timeline p {
    color: rgba(10, 10, 10, 0.66);
    line-height: 1.72;
}

.ashe-service-paths,
.ashe-system-cta {
    width: min(1600px, calc(100% - clamp(48px, 10vw, 140px)));
    margin: 0 auto clamp(58px, 8vw, 112px);
}

.ashe-service-paths {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: start;
    padding-top: clamp(54px, 7vw, 96px);
    border-top: 1px solid rgba(201, 169, 97, 0.28);
}

.ashe-service-paths h2,
.ashe-system-cta h2 {
    margin: 18px 0 0;
    font-family: var(--ashe-serif);
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.ashe-path-list {
    display: grid;
    gap: 1px;
    background: rgba(201, 169, 97, 0.22);
    border: 1px solid rgba(201, 169, 97, 0.22);
}

.ashe-path-list article {
    padding: clamp(24px, 3vw, 42px);
    background: rgba(255, 255, 255, 0.48);
}

.ashe-path-list strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.ashe-process-timeline {
    width: min(1300px, calc(100% - clamp(48px, 10vw, 140px)));
    margin: clamp(58px, 8vw, 112px) auto;
}

.ashe-process-timeline article {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: clamp(22px, 5vw, 70px);
    padding: clamp(28px, 5vw, 62px) 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.26);
}

.ashe-process-timeline h2 {
    margin: 0 0 10px;
    font-family: var(--ashe-serif);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.08;
}

.ashe-system-cta {
    padding: clamp(50px, 7vw, 88px);
    background: #0a0a0a;
    color: var(--ashe-cream);
    text-align: center;
}

.ashe-system-cta h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ashe-system-cta p {
    max-width: 680px;
    margin: 24px auto 34px;
}

.ash-footer-justice-content p:first-child strong {
    white-space: nowrap;
}

.ash-footer-justice-content p:first-child {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .ashe-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ashe-case,
    .ashe-service-paths,
    .ashe-system-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .ashe-system-hero {
        min-height: 76vh;
        padding: 108px 24px 52px;
    }

    .ashe-system-hero h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .ashe-work-index,
    .ashe-case,
    .ashe-services-grid,
    .ashe-service-paths,
    .ashe-process-timeline,
    .ashe-system-cta {
        width: calc(100% - 36px);
    }

    .ashe-work-index,
    .ashe-services-grid {
        grid-template-columns: 1fr;
    }

    .ashe-work-index {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        background: transparent;
        border: 0;
        padding-bottom: 6px;
        margin-top: 28px;
        margin-bottom: 34px;
    }

    .ashe-work-index-card,
    .ashe-services-grid article {
        min-height: 220px;
    }

    .ashe-work-index-card {
        min-width: 76%;
        min-height: 112px;
        scroll-snap-align: start;
        border: 1px solid rgba(201, 169, 97, 0.22);
        border-top: 4px solid var(--case-color);
    }

    .ashe-case-media {
        grid-template-columns: 1fr 1fr;
    }

    .ashe-case-media figure,
    .ashe-case-media figure.large {
        min-height: 160px;
        grid-column: auto;
    }

    .ashe-case-media figure.large {
        grid-column: 1 / -1;
        min-height: 220px;
    }

    .ashe-process-timeline article {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ash-footer-justice-content p:first-child {
        font-size: clamp(0.66rem, 2.75vw, 0.86rem) !important;
        line-height: 1.2 !important;
        letter-spacing: -0.01em;
    }
}

/* Final menu safety pass: keep the close mark locked inside its circle. */
.ash-mobile-menu-links a::before,
.ash-mobile-menu-links a::after {
    content: none !important;
    display: none !important;
}

.ash-mobile-menu .ash-mobile-menu-close {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ash-mobile-menu.active .ash-mobile-menu-close,
body.menu-open .ash-mobile-menu .ash-mobile-menu-close {
    position: fixed !important;
    top: max(34px, env(safe-area-inset-top)) !important;
    right: 30px !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(201, 169, 97, 0.36) !important;
    background: rgba(10, 10, 10, 0.28) !important;
    color: var(--ashe-cream) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    z-index: 9100 !important;
    transform: none !important;
}

.ash-mobile-menu .ash-mobile-menu-close::before,
.ash-mobile-menu .ash-mobile-menu-close::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: currentColor !important;
    border-radius: 999px !important;
    transform-origin: center !important;
}

.ash-mobile-menu .ash-mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.ash-mobile-menu .ash-mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

@media (min-width: 769px) {
    .ash-mobile-menu.active .ash-mobile-menu-close,
    body.menu-open .ash-mobile-menu .ash-mobile-menu-close {
        top: 18px !important;
        right: clamp(22px, 4vw, 70px) !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
    }
}

@media (max-width: 768px) {
    .ash-mobile-menu-inner {
        padding-top: max(68px, env(safe-area-inset-top)) !important;
    }

    .ash-mobile-menu-header {
        padding-right: 76px !important;
        margin-bottom: 28px !important;
    }
}
