:root {
    --bg: #090909;
    --surface: #141414;
    --surface-soft: #1b1b1b;
    --text: #f2f2ef;
    --muted: #b8b8b0;
    --line: rgba(242, 242, 239, 0.14);
    --gold: #c5a56a;
    --gold-soft: #ddc291;
    --radius: 18px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top right, #222 0%, var(--bg) 42%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration-color: rgba(197, 165, 106, 0.55);
    text-underline-offset: 0.22em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    width: 0;
    z-index: 9999;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.container {
    width: min(100% - 2.4rem, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(10px);
}

.header-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand {
    margin-right: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.brand-mark {
    letter-spacing: 0.16em;
    font-size: 0.9rem;
    font-weight: 800;
}

.custom-logo-link img {
    max-height: 56px;
    width: auto;
}

.menu-toggle {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.2rem;
}

.menu-list a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.menu-list > li {
    display: flex;
    align-items: center;
}

.menu-list .lang-item > a {
    min-height: 1.2rem;
    justify-content: center;
}

.menu-list .lang-item img {
    display: block;
    width: auto;
    height: 0.95rem;
    vertical-align: middle;
}

.menu-list a:hover,
.menu-list .current-menu-item > a {
    color: var(--text);
}

.site-main {
    min-height: calc(100vh - 240px);
}

.section {
    position: relative;
}

.section-padded {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-dark {
    background: linear-gradient(145deg, rgba(19, 19, 19, 0.98), rgba(10, 10, 10, 0.98));
    border-block: 1px solid var(--line);
}

.hero {
    padding: clamp(4.4rem, 9vw, 8rem) 0 clamp(3.6rem, 7vw, 6.4rem);
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.hero-grid > .wp-block-group__inner-container {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    color: var(--gold-soft);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.display-title,
h1,
h2,
h3 {
    margin: 0 0 1rem;
    line-height: 1.1;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.display-title {
    font-size: clamp(2.2rem, 6vw, 4.8rem);
}

h1 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.signal-strip {
    border: 1px solid rgba(197, 165, 106, 0.38);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(22, 18, 14, 0.9), rgba(34, 27, 19, 0.9));
    overflow: hidden;
}

.signal-strip p {
    margin: 0;
    padding: 0.66rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f2dfc4;
    white-space: nowrap;
    animation: signal-move 18s linear infinite;
}

.impact-strip {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-card {
    border: 1px solid rgba(197, 165, 106, 0.22);
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(19, 16, 12, 0.95), rgba(33, 27, 20, 0.94));
    padding: 0.9rem;
}

.impact-label {
    margin: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(244, 220, 180, 0.78);
}

.impact-value {
    margin: 0.45rem 0 0;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 0.95;
    color: #fff4df;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

.segment-switch {
    margin: 1rem 0 0.6rem;
    display: inline-flex;
    gap: 0.4rem;
    border: 1px solid rgba(197, 165, 106, 0.3);
    padding: 0.26rem;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.8);
}

.segment-btn {
    border: 0;
    border-radius: 999px;
    padding: 0.52rem 0.95rem;
    background: transparent;
    color: #bdb39e;
    font-weight: 700;
    cursor: pointer;
}

.segment-btn.is-active {
    background: linear-gradient(145deg, #c5a56a, #a68854);
    color: #111;
}

.segment-summary {
    margin: 0;
    color: var(--muted);
    max-width: 76ch;
}

.offer-card {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(14, 14, 14, 0.95));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: grid;
    gap: 0.7rem;
}

.offer-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.offer-card.is-featured {
    border-color: rgba(197, 165, 106, 0.54);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.lux-offers-shell {
    background: linear-gradient(160deg, #f8f5ef, #ebe6dc);
    border: 1px solid rgba(43, 36, 24, 0.16);
    border-radius: 28px;
    padding: clamp(1rem, 2.4vw, 2rem);
    box-shadow: 0 18px 38px rgba(20, 16, 9, 0.1);
    color: #171514;
}

.lux-offers-shell .eyebrow {
    color: #7a6a4c;
}

.lux-offers-title {
    color: #101010;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    max-width: 19ch;
}

.lux-offers-shell .segment-switch {
    border-color: rgba(41, 34, 22, 0.18);
    background: #e7e1d6;
}

.lux-offers-shell .segment-btn {
    color: #2f3f56;
}

.lux-offers-shell .segment-btn.is-active {
    background: #121212;
    color: #f5f2eb;
}

.lux-offers-shell .segment-summary {
    color: #4a5d77;
}

.lux-offers-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lux-offer-card {
    border: 1px solid rgba(43, 36, 24, 0.17);
    border-radius: 18px;
    background: linear-gradient(165deg, #f8f4ec, #eae4d8);
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
    color: #171514;
}

.lux-offer-card-featured {
    border-color: rgba(166, 136, 86, 0.45);
    box-shadow: 0 12px 26px rgba(166, 136, 86, 0.18);
}

.lux-offer-label {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7b6a4a;
    font-weight: 700;
}

.lux-offer-card h3 {
    margin: 0;
    color: #151311;
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    text-transform: none;
}

.lux-offer-price {
    margin: 0;
    color: #181511;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

.lux-offer-card ul {
    margin: 0;
    padding-left: 1.05rem;
    color: #4e463a;
    display: grid;
    gap: 0.3rem;
}

.lux-offer-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 0.78rem 1rem;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(145deg, #171717, #2b2721);
    color: #f4efe6;
    box-shadow: 0 12px 24px rgba(22, 18, 12, 0.26);
}

.is-hidden {
    display: none !important;
}

.proof-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.6rem;
    background: rgba(18, 18, 18, 0.78);
}

.proof-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
}

.proof-card figcaption {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: var(--muted);
}

@keyframes signal-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-42%);
    }
}

.lead {
    margin: 0 0 1.35rem;
    color: var(--muted);
    max-width: 64ch;
}

.hero-cta,
.inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-trust {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(197, 165, 106, 0.24);
    border-radius: 999px;
    padding: 0.38rem 0.78rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-points {
    margin-top: 1rem;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.hero-points p {
    margin: 0;
}

.home2-path-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.btn {
    border: 1px solid rgba(197, 165, 106, 0.55);
    background: linear-gradient(135deg, #c5a56a, #a68854);
    color: #101010;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.82rem 1.28rem;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-small {
    font-size: 0.8rem;
    padding: 0.62rem 0.95rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.hero-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(197, 165, 106, 0.3);
    background: rgba(0, 0, 0, 0.2);
    width: clamp(220px, 28vw, 460px);
    margin-inline: auto;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.section-heading {
    margin-bottom: 1.6rem;
}

.section-heading.centered,
.centered {
    text-align: center;
}

.narrow {
    width: min(100% - 2.4rem, 900px);
    margin-inline: auto;
}

.left {
    text-align: left;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(14, 14, 14, 0.95));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    color: var(--text);
}

.card h2,
.card h3,
.card p,
.card a {
    color: inherit;
}

.card-featured {
    border-color: rgba(197, 165, 106, 0.54);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.card-kicker {
    margin: 0 0 0.7rem;
    color: var(--gold-soft);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.text-link {
    font-weight: 700;
}

.prose {
    color: #ddd;
}

.prose > *:first-child {
    margin-top: 0;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.featured-image {
    margin: 1.2rem 0 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.2rem 0.95rem;
    background: rgba(16, 16, 16, 0.66);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    padding: 0.8rem 0;
}

.faq-item p {
    margin: 0 0 0.9rem;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #0b0b0b;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-title {
    margin: 0 0 0.75rem;
    color: var(--gold-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.footer-copy {
    margin: 0;
    color: var(--muted);
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.footer-menu a {
    text-decoration: none;
    color: var(--muted);
}

.footer-meta {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: #9f9f9f;
    font-size: 0.87rem;
}

.pagination-wrap {
    margin-top: 1.6rem;
}

@media (max-width: 980px) {
    .cards-3,
    .footer-grid,
    .hero-grid,
    .impact-strip,
    .proof-grid,
    .lux-offers-grid,
    .home2-path-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid > .wp-block-group__inner-container {
        grid-template-columns: 1fr;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        border-bottom: 1px solid var(--line);
        background: rgba(8, 8, 8, 0.98);
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-toggle {
        display: inline-flex;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: transparent;
        color: var(--text);
        padding: 0.54rem 0.8rem;
        font-weight: 700;
    }
}

.shop-shell .shop-card {
    background: rgba(255, 252, 247, 0.88);
    border: 1px solid rgba(33, 26, 17, 0.12);
    border-radius: 24px;
    padding: clamp(1rem, 2.5vw, 1.8rem);
    box-shadow: 0 24px 56px rgba(33, 27, 15, 0.08);
}

.shop-shell .woocommerce-ordering select {
    border: 1px solid #d5dce8;
    border-radius: 10px;
    padding: 0.55rem 0.72rem;
    font: inherit;
}

.shop-shell .woocommerce ul.products {
    margin-top: 1rem;
}

.shop-shell .woocommerce ul.products li.product {
    border: 1px solid rgba(33, 26, 17, 0.12);
    border-radius: 18px;
    padding: 0.9rem;
    background: #fffef9;
}

.shop-shell .woocommerce ul.products li.product .price {
    color: #16130f;
    font-weight: 700;
}

.shop-shell .woocommerce ul.products li.product a.button,
.shop-shell .woocommerce div.product form.cart .button,
.shop-shell .woocommerce #respond input#submit,
.shop-shell .woocommerce a.button,
.shop-shell .woocommerce button.button,
.shop-shell .woocommerce input.button {
    border: 0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    background: linear-gradient(145deg, #111111, #2f2b24);
    color: #f7f3eb;
    font-weight: 700;
}

.shop-shell .woocommerce div.product {
    display: grid;
    gap: 1.3rem;
}

.shop-shell .woocommerce div.product .product_title {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.shop-shell .woocommerce div.product p.price,
.shop-shell .woocommerce div.product span.price {
    color: #141311;
    font-size: clamp(1.55rem, 2.7vw, 2rem);
    font-weight: 700;
}

.shop-shell .woocommerce div.product .woocommerce-tabs ul.tabs {
    margin-bottom: 1rem;
}

.shop-shell .woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid rgba(33, 26, 17, 0.14);
    border-radius: 10px 10px 0 0;
    background: #f2ebdf;
}

/* =========================================
   Validated Hero Lock (approved composition)
   ========================================= */
.jackgpt-luxe-theme .hero .container.hero-grid,
.jackgpt-luxe-theme .hero .wp-block-group.container.hero-grid {
    width: min(100% - 2.4rem, 1320px) !important;
    display: grid !important;
    grid-template-columns: minmax(640px, 1.2fr) minmax(400px, 0.8fr) !important;
    gap: clamp(2rem, 3vw, 3rem) !important;
    align-items: center !important;
}

.jackgpt-luxe-theme .hero .display-title {
    font-size: clamp(3.1rem, 5.8vw, 5.7rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
    max-width: 11.2ch !important;
    margin-bottom: 1.05rem !important;
}

.jackgpt-luxe-theme .hero .lead {
    max-width: 39ch !important;
    margin-bottom: 1.4rem !important;
}

.jackgpt-luxe-theme .hero .hero-visual {
    width: clamp(350px, 32vw, 500px) !important;
    justify-self: end !important;
    margin-inline: 0 !important;
}

.jackgpt-luxe-theme .hero .hero-cta {
    gap: 0.95rem !important;
}

.jackgpt-luxe-theme .hero .wp-block-button.btn .wp-block-button__link,
.jackgpt-luxe-theme .hero a.btn {
    border: 1px solid rgba(197, 165, 106, 0.62) !important;
    background: linear-gradient(135deg, #c9ac74, #ae8b51) !important;
    color: #101010 !important;
    border-radius: 999px !important;
    padding: 0.88rem 1.42rem !important;
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24) !important;
}

.jackgpt-luxe-theme .hero .wp-block-button.btn-ghost .wp-block-button__link,
.jackgpt-luxe-theme .hero a.btn.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(12, 14, 20, 0.72) !important;
    color: #f2f2ef !important;
    border-radius: 999px !important;
    padding: 0.88rem 1.42rem !important;
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

@media (max-width: 1100px) {
    .jackgpt-luxe-theme .hero .container.hero-grid,
    .jackgpt-luxe-theme .hero .wp-block-group.container.hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr) !important;
    }

    .jackgpt-luxe-theme .hero .display-title {
        max-width: 10.5ch !important;
    }
}

@media (max-width: 980px) {
    .jackgpt-luxe-theme .hero .container.hero-grid,
    .jackgpt-luxe-theme .hero .wp-block-group.container.hero-grid {
        grid-template-columns: 1fr !important;
    }

    .jackgpt-luxe-theme .hero .hero-visual {
        justify-self: center !important;
        margin-inline: auto !important;
        width: clamp(250px, 76vw, 460px) !important;
    }

    .jackgpt-luxe-theme .hero .display-title {
        max-width: none !important;
    }
}

/* =========================================
   Absolute Proportion Lock v2 (validated)
   Ensures edit/live parity and exact hero/button composition.
   ========================================= */
.editor-styles-wrapper .wp-block,
.editor-styles-wrapper .wp-block-group,
.editor-styles-wrapper .wp-block-group__inner-container {
    max-width: none;
}

.jackgpt-luxe-theme .hero .container.hero-grid,
.jackgpt-luxe-theme .hero .wp-block-group.container.hero-grid,
.editor-styles-wrapper .hero .container.hero-grid,
.editor-styles-wrapper .hero .wp-block-group.container.hero-grid {
    width: min(100% - 2.4rem, 1380px) !important;
    display: grid !important;
    grid-template-columns: minmax(780px, 1.35fr) minmax(390px, 0.75fr) !important;
    gap: clamp(2.1rem, 3.2vw, 3.2rem) !important;
    align-items: center !important;
}

.jackgpt-luxe-theme .hero .display-title,
.editor-styles-wrapper .hero .display-title {
    font-size: clamp(3.35rem, 6.35vw, 6rem) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.03em !important;
    max-width: 18ch !important;
    margin-bottom: 1.1rem !important;
}

.jackgpt-luxe-theme .hero .lead,
.editor-styles-wrapper .hero .lead {
    max-width: 42ch !important;
    margin-bottom: 1.42rem !important;
}

.jackgpt-luxe-theme .hero .hero-visual,
.editor-styles-wrapper .hero .hero-visual {
    width: clamp(390px, 31vw, 510px) !important;
    justify-self: start !important;
    margin-inline: 0 !important;
}

.jackgpt-luxe-theme .hero .hero-cta,
.editor-styles-wrapper .hero .hero-cta {
    gap: 0.95rem !important;
}

.jackgpt-luxe-theme .wp-block-button.btn,
.jackgpt-luxe-theme .wp-block-button.btn.btn-ghost,
.editor-styles-wrapper .wp-block-button.btn,
.editor-styles-wrapper .wp-block-button.btn.btn-ghost {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.jackgpt-luxe-theme .hero .wp-block-button.btn .wp-block-button__link,
.jackgpt-luxe-theme .hero a.btn,
.editor-styles-wrapper .hero .wp-block-button.btn .wp-block-button__link,
.editor-styles-wrapper .hero a.btn {
    border: 1px solid #c9ac74 !important;
    background: #c9ac74 !important;
    color: #101010 !important;
    border-radius: 18px !important;
    padding: 0.92rem 1.55rem !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24) !important;
}

.jackgpt-luxe-theme .hero .wp-block-button.btn-ghost .wp-block-button__link,
.jackgpt-luxe-theme .hero a.btn.btn-ghost,
.editor-styles-wrapper .hero .wp-block-button.btn-ghost .wp-block-button__link,
.editor-styles-wrapper .hero a.btn.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(12, 14, 20, 0.82) !important;
    color: #f2f2ef !important;
    border-radius: 18px !important;
    padding: 0.92rem 1.55rem !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

@media (max-width: 1180px) {
    .jackgpt-luxe-theme .hero .container.hero-grid,
    .jackgpt-luxe-theme .hero .wp-block-group.container.hero-grid,
    .editor-styles-wrapper .hero .container.hero-grid,
    .editor-styles-wrapper .hero .wp-block-group.container.hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr) !important;
    }

    .jackgpt-luxe-theme .hero .display-title,
    .editor-styles-wrapper .hero .display-title {
        max-width: 16ch !important;
    }
}

@media (max-width: 860px) {
    .jackgpt-luxe-theme .hero .container.hero-grid,
    .jackgpt-luxe-theme .hero .wp-block-group.container.hero-grid,
    .editor-styles-wrapper .hero .container.hero-grid,
    .editor-styles-wrapper .hero .wp-block-group.container.hero-grid {
        grid-template-columns: 1fr !important;
    }

    .jackgpt-luxe-theme .hero .hero-visual,
    .editor-styles-wrapper .hero .hero-visual {
        justify-self: center !important;
        margin-inline: auto !important;
        width: clamp(250px, 76vw, 500px) !important;
    }

    .jackgpt-luxe-theme .hero .display-title,
    .editor-styles-wrapper .hero .display-title {
        max-width: none !important;
    }
}

/* Blog readability on beige background (override) */
body.blog .site-main,
body.archive .site-main,
body.single-post .site-main {
    background: #f4f1e9;
    color: #1b1713;
}

body.blog .section,
body.archive .section,
body.single-post .section {
    background: transparent;
}

body.blog .prose,
body.archive .prose,
body.single-post .prose,
body.blog .entry-content,
body.archive .entry-content,
body.single-post .entry-content,
body.blog .card p,
body.archive .card p,
body.single-post .card p {
    color: #2f2a23;
}

body.blog .entry-content a,
body.archive .entry-content a,
body.single-post .entry-content a {
    color: #1f3c63;
}

body.blog .section-heading h1,
body.blog .section-heading h2,
body.archive .section-heading h1,
body.archive .section-heading h2,
body.single-post .section-heading h1,
body.single-post .section-heading h2 {
    color: #1b1713;
}

body.blog .card,
body.archive .card,
body.single-post .card {
    background: #fffdf7;
    border-color: rgba(43, 36, 24, 0.16);
    color: #1b1713;
}

body.blog .card h1,
body.blog .card h2,
body.blog .card h3,
body.archive .card h1,
body.archive .card h2,
body.archive .card h3,
body.single-post .card h1,
body.single-post .card h2,
body.single-post .card h3 {
    color: #1b1713;
}

body.blog .card-kicker,
body.archive .card-kicker,
body.single-post .card-kicker {
    color: #6a5a40;
}

body.blog .text-link,
body.archive .text-link,
body.single-post .text-link {
    color: #1f3c63;
}

/* =========================================
   Store Harmony Layer
   Scope: WooCommerce pages only
   ========================================= */
body.woocommerce-page .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main {
    background:
        radial-gradient(1200px 640px at 18% -20%, rgba(197, 165, 106, 0.2), transparent 62%),
        radial-gradient(980px 520px at 90% 0%, rgba(45, 52, 78, 0.24), transparent 66%),
        #08090d;
    color: #f2f2ef;
}

body.woocommerce-page article.jackgpt-page-content,
body.post-type-archive-product .shop-shell,
body.tax-product_cat .shop-shell,
body.tax-product_tag .shop-shell {
    width: min(100% - 2.4rem, 1220px);
    margin: clamp(1.4rem, 2.8vw, 2.6rem) auto clamp(2.2rem, 5vw, 4rem);
}

body.woocommerce-page article.jackgpt-page-content > .woocommerce,
body.woocommerce-page article.jackgpt-page-content .wp-block-woocommerce-cart,
body.woocommerce-page article.jackgpt-page-content .wp-block-woocommerce-checkout,
body.woocommerce-page article.jackgpt-page-content .wp-block-woocommerce-customer-account,
body.woocommerce-page article.jackgpt-page-content .wc-block-cart,
body.woocommerce-page article.jackgpt-page-content .wc-block-checkout,
body.woocommerce-page article.jackgpt-page-content .woocommerce-account,
body.woocommerce-page article.jackgpt-page-content .woocommerce-order,
body.woocommerce-page article.jackgpt-page-content .woocommerce-view-order,
body.woocommerce-page article.jackgpt-page-content .woocommerce-MyAccount-content,
body.post-type-archive-product .shop-card,
body.tax-product_cat .shop-card,
body.tax-product_tag .shop-card {
    background: linear-gradient(165deg, rgba(13, 15, 22, 0.96), rgba(8, 9, 14, 0.98));
    border: 1px solid rgba(197, 165, 106, 0.28);
    border-radius: 24px;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
    padding: clamp(1rem, 2.2vw, 1.8rem);
}

body.woocommerce-page .shop-shell .section-head h1,
body.woocommerce-page .shop-shell .section-head h2,
body.post-type-archive-product .shop-shell .section-head h1,
body.post-type-archive-product .shop-shell .section-head h2,
body.tax-product_cat .shop-shell .section-head h1,
body.tax-product_cat .shop-shell .section-head h2,
body.tax-product_tag .shop-shell .section-head h1,
body.tax-product_tag .shop-shell .section-head h2 {
    color: #f5f2ea;
}

body.woocommerce-page .shop-shell .section-head .lead,
body.post-type-archive-product .shop-shell .section-head .lead,
body.tax-product_cat .shop-shell .section-head .lead,
body.tax-product_tag .shop-shell .section-head .lead {
    color: #cfc9bd;
}

body.woocommerce-page .woocommerce ul.products li.product,
body.post-type-archive-product .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_tag .woocommerce ul.products li.product {
    background: linear-gradient(165deg, rgba(19, 22, 31, 0.92), rgba(11, 12, 18, 0.96));
    border: 1px solid rgba(197, 165, 106, 0.22);
    border-radius: 18px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.woocommerce-page .woocommerce ul.products li.product:hover,
body.post-type-archive-product .woocommerce ul.products li.product:hover,
body.tax-product_cat .woocommerce ul.products li.product:hover,
body.tax-product_tag .woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
    border-color: rgba(221, 194, 145, 0.54);
}

body.woocommerce-page .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page .woocommerce ul.products li.product .price,
body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product .woocommerce ul.products li.product .price,
body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce ul.products li.product .price,
body.tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag .woocommerce ul.products li.product .price {
    color: #f2ede3;
}

body.woocommerce-page .woocommerce div.product .product_title,
body.woocommerce-page .woocommerce div.product p.price,
body.woocommerce-page .woocommerce div.product span.price,
body.woocommerce-page .woocommerce div.product .woocommerce-product-details__short-description,
body.woocommerce-page .woocommerce div.product .woocommerce-tabs,
body.woocommerce-page .woocommerce .related.products h2,
body.woocommerce-page .woocommerce-tabs .panel,
body.woocommerce-page .woocommerce .product_meta,
body.post-type-archive-product .woocommerce div.product .product_title,
body.tax-product_cat .woocommerce div.product .product_title,
body.tax-product_tag .woocommerce div.product .product_title {
    color: #efe9de;
}

body.woocommerce-page .woocommerce div.product .woocommerce-tabs ul.tabs li,
body.woocommerce-page .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    background: rgba(19, 22, 30, 0.92);
    color: #e9decb;
    border-color: rgba(197, 165, 106, 0.28);
}

body.woocommerce-page .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
body.woocommerce-page .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background: rgba(28, 32, 44, 0.98);
    color: #fff6e5;
    border-color: rgba(221, 194, 145, 0.62);
}

body.woocommerce-page .woocommerce-message,
body.woocommerce-page .woocommerce-info,
body.woocommerce-page .woocommerce-error,
body.woocommerce-page .wc-block-components-notice-banner,
body.post-type-archive-product .woocommerce-message,
body.post-type-archive-product .woocommerce-info,
body.post-type-archive-product .woocommerce-error {
    background: rgba(13, 16, 24, 0.96);
    color: #efe8dd;
    border: 1px solid rgba(197, 165, 106, 0.42);
    border-radius: 14px;
}

body.woocommerce-page .woocommerce table.shop_table,
body.woocommerce-page .wc-block-components-order-summary,
body.woocommerce-page .wc-block-components-totals-wrapper,
body.woocommerce-page .wc-block-components-main,
body.woocommerce-page .wc-block-components-sidebar-layout .wc-block-components-sidebar,
body.woocommerce-page .wc-block-cart-items,
body.woocommerce-page .wc-block-components-totals-item,
body.woocommerce-page .wc-block-checkout__actions,
body.woocommerce-page .wc-block-components-panel,
body.woocommerce-page .woocommerce-cart-form,
body.woocommerce-page .cart_totals,
body.woocommerce-page .woocommerce-checkout-review-order,
body.woocommerce-page .woocommerce-MyAccount-navigation,
body.woocommerce-page .woocommerce-MyAccount-content,
body.woocommerce-page .woocommerce-form-login,
body.woocommerce-page .woocommerce-form-register {
    background: rgba(11, 13, 20, 0.94);
    border: 1px solid rgba(197, 165, 106, 0.24);
    border-radius: 16px;
    color: #efe8dd;
}

body.woocommerce-page .woocommerce table.shop_table th,
body.woocommerce-page .woocommerce table.shop_table td,
body.woocommerce-page .wc-block-components-product-name,
body.woocommerce-page .wc-block-components-totals-item__label,
body.woocommerce-page .wc-block-components-totals-item__value,
body.woocommerce-page .wc-block-components-checkout-step__title,
body.woocommerce-page .wc-block-components-title,
body.woocommerce-page .wc-block-components-formatted-money-amount,
body.woocommerce-page .wc-block-components-radio-control__option-layout,
body.woocommerce-page .wc-block-components-address-card__address-section {
    color: #f1eadf;
}

body.woocommerce-page .woocommerce a,
body.woocommerce-page .wc-block-components-product-name a,
body.woocommerce-page .wc-block-cart-item__product .wc-block-components-product-name a {
    color: #f2dfc4;
}

body.woocommerce-page .woocommerce a:hover,
body.woocommerce-page .wc-block-components-product-name a:hover,
body.woocommerce-page .wc-block-cart-item__product .wc-block-components-product-name a:hover {
    color: #ffeccf;
}

body.woocommerce-page .woocommerce form .form-row input.input-text,
body.woocommerce-page .woocommerce form .form-row textarea,
body.woocommerce-page .woocommerce form .form-row select,
body.woocommerce-page .wc-block-components-text-input input,
body.woocommerce-page .wc-block-components-text-input textarea,
body.woocommerce-page .wc-block-components-combobox-control .components-combobox-control__input,
body.woocommerce-page .wc-block-components-select .wc-block-components-select__select {
    background: rgba(7, 9, 15, 0.96);
    color: #f4f0e8;
    border: 1px solid rgba(197, 165, 106, 0.38);
    border-radius: 12px;
    box-shadow: none;
}

body.woocommerce-page .woocommerce form .form-row input.input-text:focus,
body.woocommerce-page .woocommerce form .form-row textarea:focus,
body.woocommerce-page .woocommerce form .form-row select:focus,
body.woocommerce-page .wc-block-components-text-input input:focus,
body.woocommerce-page .wc-block-components-text-input textarea:focus,
body.woocommerce-page .wc-block-components-combobox-control .components-combobox-control__input:focus,
body.woocommerce-page .wc-block-components-select .wc-block-components-select__select:focus {
    outline: none;
    border-color: rgba(221, 194, 145, 0.84);
    box-shadow: 0 0 0 3px rgba(197, 165, 106, 0.18);
}

body.woocommerce-page .woocommerce button.button,
body.woocommerce-page .woocommerce a.button,
body.woocommerce-page .woocommerce input.button,
body.woocommerce-page .woocommerce #respond input#submit,
body.woocommerce-page .wc-block-components-button,
body.woocommerce-page .wc-block-cart__submit-container a,
body.woocommerce-page .wc-block-components-checkout-place-order-button {
    border: 1px solid rgba(201, 172, 116, 0.88) !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #d6b87f, #b99250) !important;
    color: #14110c !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
}

body.woocommerce-page .woocommerce button.button:hover,
body.woocommerce-page .woocommerce a.button:hover,
body.woocommerce-page .woocommerce input.button:hover,
body.woocommerce-page .woocommerce #respond input#submit:hover,
body.woocommerce-page .wc-block-components-button:hover,
body.woocommerce-page .wc-block-cart__submit-container a:hover,
body.woocommerce-page .wc-block-components-checkout-place-order-button:hover {
    background: linear-gradient(135deg, #e2c78f, #c7a467) !important;
    color: #111 !important;
}

body.woocommerce-page .woocommerce .button.alt,
body.woocommerce-page .woocommerce-page .button.alt {
    border-color: rgba(201, 172, 116, 0.95) !important;
}

body.woocommerce-page .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0.4rem;
}

body.woocommerce-page .woocommerce-MyAccount-navigation ul li {
    margin: 0 0 0.4rem;
}

body.woocommerce-page .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 0.72rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    color: #d8ceba;
    border: 1px solid transparent;
    background: rgba(20, 23, 31, 0.74);
}

body.woocommerce-page .woocommerce-MyAccount-navigation ul li.is-active a,
body.woocommerce-page .woocommerce-MyAccount-navigation ul li a:hover {
    color: #fff3dc;
    border-color: rgba(221, 194, 145, 0.62);
    background: rgba(35, 28, 20, 0.82);
}

body.woocommerce-page .wc-block-components-quantity-selector,
body.woocommerce-page .quantity .qty {
    background: rgba(8, 10, 16, 0.95);
    border: 1px solid rgba(197, 165, 106, 0.4);
    border-radius: 10px;
    color: #f0e9dc;
}

body.woocommerce-page .wc-block-cart-item__image img,
body.woocommerce-page .woocommerce-cart-form__cart-item img,
body.woocommerce-page .woocommerce ul.products li.product img,
body.woocommerce-page .woocommerce div.product div.images img {
    border-radius: 14px;
    border: 1px solid rgba(197, 165, 106, 0.22);
}

body.woocommerce-page .select2-container--default .select2-selection--single,
body.woocommerce-page .select2-container--default .select2-selection--multiple {
    background: rgba(8, 10, 16, 0.96);
    border: 1px solid rgba(197, 165, 106, 0.4);
    border-radius: 12px;
    color: #f2ecdf;
    min-height: 44px;
}

body.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #f2ecdf;
    line-height: 42px;
}

body.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

body.woocommerce-page .select2-dropdown {
    background: #10131d;
    border: 1px solid rgba(197, 165, 106, 0.38);
    color: #f0e8d9;
}

body.woocommerce-page .select2-container--default .select2-results__option--highlighted[aria-selected],
body.woocommerce-page .select2-container--default .select2-results__option--highlighted[data-selected] {
    background: rgba(201, 172, 116, 0.28);
    color: #fff6e8;
}

@media (max-width: 960px) {
    body.woocommerce-page article.jackgpt-page-content,
    body.post-type-archive-product .shop-shell,
    body.tax-product_cat .shop-shell,
    body.tax-product_tag .shop-shell {
        width: min(100% - 1.1rem, 1220px);
        margin-top: 1rem;
    }

    body.woocommerce-page article.jackgpt-page-content > .woocommerce,
    body.woocommerce-page article.jackgpt-page-content .wp-block-woocommerce-cart,
    body.woocommerce-page article.jackgpt-page-content .wp-block-woocommerce-checkout,
    body.woocommerce-page article.jackgpt-page-content .wc-block-cart,
    body.woocommerce-page article.jackgpt-page-content .wc-block-checkout,
    body.post-type-archive-product .shop-card,
    body.tax-product_cat .shop-card,
    body.tax-product_tag .shop-card {
        border-radius: 18px;
        padding: 0.86rem;
    }
}

/* Single product: remove oversized top offset and enforce clean two-column layout */
body.single-product .section.section-padded {
    padding-top: clamp(1rem, 2.4vw, 1.8rem);
    padding-bottom: clamp(1.6rem, 3.2vw, 2.6rem);
}

body.single-product .woocommerce-wrap {
    width: min(100% - 1.2rem, 1220px);
    margin-inline: auto;
}

body.single-product div.product {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
    gap: clamp(1.5rem, 3.2vw, 2.75rem);
    margin-top: 0;
}

body.single-product div.product div.images,
body.single-product div.product div.summary {
    float: none;
    width: 100%;
    margin: 0;
}

body.single-product div.product div.images {
    position: sticky;
    top: 92px;
    align-self: start;
    margin-top: -4.5rem;
}

body.single-product div.product div.images .woocommerce-product-gallery {
    width: min(240px, 100%);
    max-width: 240px;
    margin: 0 auto;
}

body.single-product div.product div.summary {
    padding-inline: clamp(0.65rem, 1.8vw, 1.4rem);
}

body.single-product div.product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: clamp(1rem, 2vw, 1.5rem);
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper,
body.single-product div.product div.images .woocommerce-product-gallery__image,
body.single-product div.product div.images .woocommerce-product-gallery__image a,
body.single-product div.product div.images img {
    width: 100%;
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: block;
}

@media (max-width: 980px) {
    body.single-product div.product {
        grid-template-columns: 1fr;
    }

    body.single-product div.product div.images {
        position: static;
        margin-top: 0;
    }

    body.single-product div.product div.images .woocommerce-product-gallery {
        width: 100%;
        max-width: none;
    }

    body.single-product div.product div.summary {
        padding-inline: 0;
    }
}

/* Global footer consistency and contrast across all page contexts */
.site-footer,
.site-footer p,
.site-footer li,
.site-footer a {
    color: #cfc8ba;
}

.site-footer .footer-title {
    color: #e7d3b0;
}

.site-footer .footer-copy {
    color: #bfb8aa;
}

.site-footer a:hover {
    color: #fff1d1;
}

.site-footer .footer-meta {
    color: #a9a193;
}

/* Home2 premium landing page */
.home2-premium {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.home2-shell {
    display: grid;
    gap: 1.65rem;
}

.home2-top-strip {
    border: 1px solid rgba(197, 165, 106, 0.38);
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(33, 26, 18, 0.95), rgba(10, 10, 10, 0.98));
    color: #dbc190;
    padding: 0.95rem 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    overflow: hidden;
}

.home2-top-strip p {
    margin: 0;
    white-space: nowrap;
}

.home2-hero-panel,
.home2-panel {
    border: 1px solid rgba(197, 165, 106, 0.25);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.home2-hero-panel {
    background: radial-gradient(circle at top left, rgba(66, 48, 25, 0.4), transparent 42%), linear-gradient(135deg, #17120d 0%, #090909 55%, #070707 100%);
    padding: clamp(1.2rem, 2vw, 1.8rem);
}

.home2-panel-light {
    background: #f1ede4;
    padding: clamp(1.35rem, 2.4vw, 2rem);
}

.home2-panel-dark {
    background: linear-gradient(135deg, #17120d 0%, #090909 55%, #070707 100%);
    padding: clamp(1.35rem, 2.4vw, 2rem);
}

.home2-hero-grid-premium {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 1.35rem;
    align-items: stretch;
}

.home2-hero-main {
    color: #f6f1e7;
    padding: clamp(1.2rem, 2vw, 2rem);
}

.home2-hero-title-premium {
    margin: 0 0 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(3.7rem, 8vw, 5.9rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    max-width: 8ch;
    color: #f5f2ea;
}

.home2-hero-lead-premium {
    max-width: 30rem;
    margin: 0 0 1.25rem;
    color: rgba(246, 241, 231, 0.88);
    font-size: 1.05rem;
}

.home2-hero-actions-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.home2-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.home2-trust-pills span {
    border: 1px solid rgba(197, 165, 106, 0.38);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    color: #f0e8d9;
    font-size: 0.78rem;
}

.home2-hero-side {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 0.9rem;
}

.home2-portrait-card,
.home2-cred-card {
    border: 1px solid rgba(197, 165, 106, 0.32);
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(17, 17, 17, 0.96), rgba(33, 26, 18, 0.9));
}

.home2-portrait-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.home2-cred-card {
    padding: 1rem 1.15rem;
    color: #f6f1e7;
}

.home2-cred-card ul {
    margin: 0.6rem 0 0;
    padding-left: 1.15rem;
    color: rgba(246, 241, 231, 0.92);
    display: grid;
    gap: 0.45rem;
}

.home2-section-head {
    margin-bottom: 1.2rem;
    text-align: center;
}

.home2-section-head-left {
    text-align: left;
}

.home2-section-head h2 {
    margin: 0.15rem 0 0.6rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.55rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #101010;
    max-width: 12ch;
}

.home2-section-head p:not(.eyebrow) {
    max-width: 42rem;
    margin: 0;
    color: #55504a;
}

.home2-section-head-invert h2,
.home2-section-head-invert p:not(.eyebrow) {
    color: #f6f1e7;
}

.home2-pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.home2-offer-card {
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 20px;
    background: #faf7f0;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(18, 18, 18, 0.08);
}

.home2-offer-card.is-featured {
    border-color: rgba(197, 165, 106, 0.5);
    box-shadow: 0 14px 36px rgba(79, 57, 28, 0.12);
}

.home2-offer-label,
.home2-offer-link,
.home2-testimonial-role-premium {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home2-offer-label {
    margin: 0 0 0.5rem;
    color: #7a6a4c;
    font-weight: 700;
}

.home2-offer-card h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.home2-offer-price {
    margin: 0.55rem 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: #111;
    font-weight: 700;
}

.home2-offer-text {
    color: #504a43;
    min-height: 4.7rem;
}

.home2-offer-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    color: #101010;
    text-decoration: underline;
}

.home2-services-panel .home2-section-head h2 {
    max-width: none;
}

.home2-services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.home2-service-card-premium {
    border: 1px solid rgba(197, 165, 106, 0.28);
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(22, 22, 22, 0.98), rgba(35, 28, 19, 0.92));
    padding: 1rem 1.1rem;
    color: #f6f1e7;
}

.home2-service-card-premium h3 {
    margin: 0.2rem 0 0.6rem;
    color: #f6f1e7;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.home2-service-card-premium p {
    color: rgba(246, 241, 231, 0.88);
}

.home2-service-card-premium a {
    color: #dbc190;
    font-weight: 700;
    text-decoration: underline;
}

.home2-testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.home2-testimonial-card-premium {
    border: 1px solid rgba(197, 165, 106, 0.28);
    border-radius: 22px;
    background: rgba(14, 14, 14, 0.66);
    padding: 1rem;
    color: #f6f1e7;
}

.home2-testimonial-card-premium h3 {
    margin: 0;
    color: #f6f1e7;
}

.home2-testimonial-role-premium {
    margin: 0.35rem 0 0.8rem;
    color: #dbc190;
}

.home2-testimonial-card-premium blockquote {
    margin: 0;
    color: rgba(246, 241, 231, 0.9);
    line-height: 1.7;
}

.home2-path-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.home2-path-card-premium {
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 22px;
    background: #faf7f0;
    padding: 1.25rem;
}

.home2-path-card-premium.is-dark {
    background: linear-gradient(155deg, rgba(22, 22, 22, 0.98), rgba(35, 28, 19, 0.92));
    border-color: rgba(197, 165, 106, 0.28);
    color: #f6f1e7;
}

.home2-path-card-premium.is-dark h3,
.home2-path-card-premium.is-dark p {
    color: #f6f1e7;
}

.home2-faq-list-premium {
    display: grid;
    gap: 0.8rem;
}

.home2-faq-item-premium {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 18px;
    background: #faf7f0;
}

.home2-faq-item-premium summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    color: #111;
}

.home2-faq-item-premium summary::-webkit-details-marker {
    display: none;
}

.home2-faq-item-premium div {
    padding: 0 1.1rem 1rem;
}

.home2-faq-item-premium p {
    margin: 0;
    color: #504a43;
}

@media (max-width: 1120px) {
    .home2-pricing-grid-premium,
    .home2-testimonials-grid-premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .home2-hero-grid-premium,
    .home2-services-grid-premium,
    .home2-path-grid-premium {
        grid-template-columns: 1fr;
    }

    .home2-hero-title-premium {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .home2-pricing-grid-premium,
    .home2-testimonials-grid-premium,
    .home2-services-grid-premium {
        grid-template-columns: 1fr;
    }

    .home2-top-strip p {
        white-space: normal;
    }

    .home2-section-head h2 {
        max-width: none;
    }
}
