:root {
    --rtr-bg: #0f0e11;
    --rtr-surface: #17161b;
    --rtr-surface-2: #201f26;
    --rtr-cream: #f6efe2;
    --rtr-cream-2: #e8dcc3;
    --rtr-text: #f4eee4;
    --rtr-muted: #bcb5aa;
    --rtr-dark-text: #201811;
    --rtr-accent: #96d35f;
    --rtr-accent-2: #d8ff9b;
    --rtr-line: rgba(255, 255, 255, 0.08);
    --rtr-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --rtr-radius: 24px;
    --rtr-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, rgba(150, 211, 95, 0.18), transparent 26%),
        linear-gradient(180deg, #121014 0%, #0d0c10 100%);
    color: var(--rtr-text);
    line-height: 1.6;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(calc(100% - 32px), var(--rtr-max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(15, 14, 17, 0.76);
    border-bottom: 1px solid var(--rtr-line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.brand__logo img {
    display: block;
    width: auto;
    height: 68px;
    filter:
        drop-shadow(0 0 0.75px rgba(15, 14, 17, 0.98))
        drop-shadow(0 0 1.5px rgba(15, 14, 17, 0.98));
}

.brand__badge {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--rtr-accent), #5f8f2a);
    color: #101010;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__text strong {
    font-size: 1.05rem;
}

.brand__text small {
    color: var(--rtr-muted);
    font-size: 0.8rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu,
.footer-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu a,
.footer-menu a {
    color: var(--rtr-muted);
    transition: color 0.2s ease;
}

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

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--rtr-line);
    border-radius: 14px;
    background: transparent;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--rtr-text);
}

.site-main {
    overflow: clip;
}

.hero,
.section {
    padding: 88px 0;
}

.hero__grid,
.pitch-grid,
.site-footer__grid,
.section-heading--split,
.cta-box {
    display: grid;
    gap: 40px;
}

.hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: 48px 0 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(150, 211, 95, 0.3);
    border-radius: 999px;
    background: rgba(150, 211, 95, 0.08);
    color: var(--rtr-accent-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
}

h1,
.hero h1,
.section h2,
.content-header h1,
.woocommerce-products-header__title.page-title,
.product_title.entry-title {
    margin: 18px 0;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    max-width: 10ch;
}

.hero p,
.section-heading p,
.content-body,
.pitch-points p,
.faq-grid p,
.woocommerce-product-details__short-description,
.woocommerce-tabs .panel {
    color: var(--rtr-muted);
    font-size: 1.05rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button,
.button.alt,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--rtr-accent), #baf06d);
    color: #151515;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(150, 211, 95, 0.18);
}

.button:hover,
.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: linear-gradient(135deg, #abec69, #d6ff95);
    color: #151515;
}

.button--ghost,
.woocommerce a.button.add_to_cart_button,
.woocommerce a.button.product_type_simple,
.woocommerce a.button.product_type_variable {
    background: transparent;
    color: var(--rtr-text);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.button--ghost:hover,
.woocommerce a.button.add_to_cart_button:hover,
.woocommerce a.button.product_type_simple:hover,
.woocommerce a.button.product_type_variable:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--rtr-text);
}

.button--small {
    padding: 11px 18px;
    font-size: 0.95rem;
}

.hero__stats,
.footer-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
}

.hero__stats li,
.footer-facts li {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--rtr-line);
}

.hero__stats strong {
    display: block;
    color: var(--rtr-accent-2);
    font-size: 1.2rem;
}

.hero__stats span {
    color: var(--rtr-muted);
    font-size: 0.92rem;
}

.hero__visual {
    position: relative;
    min-height: 620px;
}

.hero__glow {
    position: absolute;
    inset: 14% 10% 14% 10%;
    background: radial-gradient(circle, rgba(150, 211, 95, 0.35) 0%, rgba(150, 211, 95, 0.06) 48%, transparent 70%);
    filter: blur(20px);
}

.hero__card {
    position: absolute;
    width: min(46vw, 270px);
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--rtr-shadow);
}

.hero__card--main {
    top: 8%;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
}

.hero__card--left {
    left: 2%;
    bottom: 6%;
    transform: rotate(-12deg);
    z-index: 2;
}

.hero__card--right {
    right: 4%;
    bottom: 4%;
    transform: rotate(12deg);
    z-index: 2;
}

.proof-strip {
    padding: 18px 0 0;
}

.proof-strip__grid,
.steps-grid,
.card-gallery__grid,
.faq-grid,
.woocommerce ul.products {
    display: grid;
    gap: 22px;
}

.proof-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip article,
.step-card,
.card-tile,
.faq-grid article,
.content-shell,
.cta-box,
.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    border-radius: var(--rtr-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--rtr-line);
    box-shadow: var(--rtr-shadow);
}

.proof-strip article,
.step-card,
.faq-grid article,
.woocommerce ul.products li.product {
    padding: 26px;
}

.proof-strip h2,
.step-card h3,
.faq-grid h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.section--light {
    background: linear-gradient(180deg, rgba(246, 239, 226, 0.98), rgba(233, 223, 203, 0.96));
    color: var(--rtr-dark-text);
}

.section--light .eyebrow {
    border-color: rgba(32, 24, 17, 0.12);
    background: rgba(255, 255, 255, 0.45);
    color: #4d6830;
}

.section--light .section-heading p,
.section--light .step-card p,
.section--light .faq-grid p,
.section--page .content-body,
.section--page .content-body p,
.section--page .content-body li,
.section--page .content-body span,
.section--page .content-body blockquote,
.section--page .woocommerce-breadcrumb,
.section--page .woocommerce-result-count,
.section--page .woocommerce-product-details__short-description,
.section--page .woocommerce-tabs .panel,
.section--page .woocommerce-tabs p,
.section--page .woocommerce-form-row label,
.section--page .woocommerce-terms-and-conditions-wrapper,
.section--page .woocommerce-shipping-totals,
.section--page .product_meta,
.section--page .price,
.section--page .stock,
.section--page .quantity,
.section--page .woocommerce-loop-product__title,
.section--page .woocommerce-Price-amount,
.section--page .wc-block-components-formatted-money-amount,
.section--page .shop_table,
.section--page table td,
.section--page table th {
    color: #54493c;
}

.section--light .step-card,
.section--light .faq-grid article,
.section--page .content-shell,
.section--page .woocommerce ul.products li.product,
.section--page .woocommerce div.product,
.section--page .woocommerce-cart-form,
.section--page .cart-collaterals,
.section--page .woocommerce-checkout .woocommerce,
.section--page .woocommerce-account .woocommerce,
.section--page .woocommerce-notices-wrapper .woocommerce-message,
.section--page .woocommerce-notices-wrapper .woocommerce-info,
.section--page .woocommerce-notices-wrapper .woocommerce-error {
    background: rgba(255, 255, 255, 0.52);
    border-color: rgba(32, 24, 17, 0.08);
    box-shadow: 0 22px 50px rgba(43, 31, 18, 0.08);
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    margin-bottom: 12px;
}

.section-heading--split {
    grid-template-columns: 1fr auto;
    align-items: end;
    text-align: left;
}

.text-link {
    color: var(--rtr-accent-2);
    font-weight: 700;
}

.steps-grid,
.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card span {
    color: #6d8e40;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 0.86rem;
}

.card-gallery__grid,
.woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-gallery__marquee {
    position: relative;
    overflow: hidden;
    padding-block: 12px 18px;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.card-gallery__track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    animation: rtr-card-marquee 12s linear infinite;
    will-change: transform;
}

.card-gallery__marquee .card-tile {
    flex: 0 0 clamp(150px, 15vw, 220px);
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    animation: rtr-card-wave 4.6s ease-in-out infinite;
    will-change: transform;
}

.card-gallery__marquee .card-tile img {
    display: block;
    border-radius: 18px;
    width: 100%;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.card-gallery__track .card-tile:nth-child(6n + 1) {
    animation-delay: 0s;
}

.card-gallery__track .card-tile:nth-child(6n + 2) {
    animation-delay: 0.35s;
}

.card-gallery__track .card-tile:nth-child(6n + 3) {
    animation-delay: 0.7s;
}

.card-gallery__track .card-tile:nth-child(6n + 4) {
    animation-delay: 1.05s;
}

.card-gallery__track .card-tile:nth-child(6n + 5) {
    animation-delay: 1.4s;
}

.card-gallery__track .card-tile:nth-child(6n + 6) {
    animation-delay: 1.75s;
}

@keyframes rtr-card-marquee {
    from {
        transform: translateX(calc(-50% - 11px));
    }

    to {
        transform: translateX(0);
    }
}

@keyframes rtr-card-wave {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    25% {
        transform: translateY(-14px) rotate(-0.5deg);
    }

    50% {
        transform: translateY(6px) rotate(1.25deg);
    }

    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.section--accent {
    background:
        radial-gradient(circle at 20% 0%, rgba(150, 211, 95, 0.24), transparent 26%),
        linear-gradient(180deg, rgba(20, 19, 24, 0.98), rgba(10, 10, 12, 1));
}

.pitch-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.pitch-points {
    display: grid;
    gap: 18px;
}

.pitch-points article {
    padding: 24px;
    border-left: 3px solid var(--rtr-accent);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 20px 20px 0;
}

.cta-box {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 34px;
}

.section--page {
    padding: 56px 0 88px;
    background: linear-gradient(180deg, rgba(246, 239, 226, 0.98), rgba(233, 223, 203, 0.96));
    color: var(--rtr-dark-text);
}

.content-shell {
    padding: 36px;
}

.content-shell--wide {
    padding: 30px;
}

.content-shell--narrow {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.content-header h1,
.woocommerce-products-header__title.page-title,
.product_title.entry-title,
.entry-title {
    color: var(--rtr-dark-text);
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.content-body > :first-child {
    margin-top: 0;
}

.content-body h2,
.content-body h3,
.woocommerce-tabs h2 {
    color: var(--rtr-dark-text);
    font-family: Georgia, 'Times New Roman', serif;
}

.content-body ul,
.content-body ol {
    padding-left: 1.2rem;
}

.site-footer {
    padding: 30px 0 20px;
    border-top: 1px solid var(--rtr-line);
}

.site-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    padding-bottom: 22px;
}

.site-footer h2,
.site-footer h3 {
    margin-top: 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.site-footer__bottom {
    padding-top: 16px;
    border-top: 1px solid var(--rtr-line);
    color: var(--rtr-muted);
}

.footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 24px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.woocommerce table.shop_table,
.woocommerce-cart table.cart td.actions .coupon .input-text {
    border-radius: 14px;
    border: 1px solid rgba(32, 24, 17, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--rtr-dark-text);
    min-height: 48px;
}

.woocommerce div.product,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
    padding: 28px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    margin-bottom: 0;
}

.woocommerce div.product .price,
.woocommerce ul.products li.product .price {
    color: #4d6830;
    font-weight: 700;
}

.woocommerce ul.products li.product a img {
    border-radius: 18px;
    margin-bottom: 18px;
}

.woocommerce ul.products li.product .button {
    margin-top: 10px;
}

.woocommerce-product-gallery__wrapper img,
.woocommerce div.product div.images img {
    border-radius: 24px;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    border-color: rgba(32, 24, 17, 0.08);
}

.single-product .woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: start;
}

.single-product .woocommerce div.product .images {
    position: sticky;
    top: 112px;
}

.single-product .woocommerce div.product .summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.single-product .product_title.entry-title {
    margin-bottom: 0;
}

.single-product .summary .price:empty {
    display: none;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 1.08rem;
    max-width: 48ch;
}

.single-product .product_meta {
    order: 7;
    padding-top: 8px;
    border-top: 1px solid rgba(32, 24, 17, 0.08);
}

.single-product .product_meta > span {
    display: block;
    color: #6b5c4d;
}

.single-product .woocommerce-product-gallery__wrapper {
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(240, 233, 219, 0.94));
}

.single-product .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px !important;
}

.single-product .flex-control-thumbs li {
    width: auto !important;
}

.single-product .flex-control-thumbs img {
    border-radius: 16px;
    border: 1px solid rgba(32, 24, 17, 0.08);
}

.rtr-product-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.rtr-product-facts div,
.rtr-story-grid article,
.rtr-product-callout {
    border-radius: 20px;
    border: 1px solid rgba(32, 24, 17, 0.08);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 16px 40px rgba(43, 31, 18, 0.08);
}

.rtr-product-facts div {
    padding: 14px 16px;
}

.rtr-product-facts strong {
    display: block;
    color: #263e13;
    font-size: 1.1rem;
}

.rtr-product-facts span {
    color: #6b5c4d;
    font-size: 0.9rem;
}

.rtr-product-callout {
    padding: 22px;
}

.rtr-product-callout__eyebrow {
    margin: 0 0 8px;
    color: #52712d;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rtr-product-callout h2 {
    margin: 0 0 10px;
    color: var(--rtr-dark-text);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.08;
}

.rtr-product-callout p {
    margin: 0;
    color: #5e5142;
}

.rtr-product-story {
    margin-top: 32px;
    display: grid;
    gap: 22px;
}

.rtr-story-card,
.single-product .woocommerce-tabs {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(32, 24, 17, 0.08);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 16px 40px rgba(43, 31, 18, 0.08);
}

.rtr-story-card h2 {
    margin: 14px 0 10px;
    color: var(--rtr-dark-text);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.rtr-story-card p,
.rtr-story-grid article p,
.rtr-tab-copy p,
.rtr-tab-copy li {
    color: #5e5142;
}

.rtr-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rtr-story-grid article {
    padding: 22px;
}

.rtr-story-grid h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--rtr-dark-text);
    font-family: Georgia, 'Times New Roman', serif;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding-left: 0;
    border-bottom: 0;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 999px;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(32, 24, 17, 0.06);
    color: var(--rtr-dark-text);
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    background: #263e13;
    color: #f6efe2;
}

.single-product .woocommerce-tabs ul.tabs li.reviews_tab {
    display: none;
}

.single-product .woocommerce-tabs .panel {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.rtr-tab-copy ol,
.rtr-tab-copy ul {
    padding-left: 1.2rem;
}

.rtr-product--primary .content-shell,
.rtr-product--primary .woocommerce div.product {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.rtr-product-page {
    display: grid;
    gap: 32px;
}

.rtr-product-hero,
.rtr-concept-band,
.rtr-steps-section,
.rtr-card-showcase,
.rtr-product-detail-grid {
    display: grid;
    gap: 26px;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(32, 24, 17, 0.08);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 20px 50px rgba(43, 31, 18, 0.08);
}

.rtr-product-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    align-items: center;
    padding: 34px;
}

.rtr-product-hero__copy h1 {
    margin: 16px 0 14px;
    color: var(--rtr-dark-text);
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.98;
    max-width: 11ch;
}

.rtr-product-hero__lede {
    margin: 0;
    color: #56493b;
    font-size: 1.08rem;
    max-width: 50ch;
}

.rtr-product-hero__chips,
.rtr-product-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rtr-product-hero__chips {
    margin-top: 22px;
}

.rtr-product-hero__chips span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(32, 24, 17, 0.06);
    color: var(--rtr-dark-text);
    font-weight: 600;
}

.rtr-product-hero__facts {
    margin-top: 22px;
}

.rtr-product-hero__facts div,
.rtr-concept-band__cards article,
.rtr-steps-grid article,
.rtr-detail-card {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(32, 24, 17, 0.08);
    background: rgba(255, 255, 255, 0.68);
}

.rtr-product-hero__facts div {
    min-width: 140px;
}

.rtr-product-hero__facts strong {
    display: block;
    color: #294313;
    font-size: 1.18rem;
}

.rtr-product-hero__facts span {
    color: #6a5b4c;
}

.rtr-product-hero__actions {
    margin-top: 22px;
}

.rtr-product-purchase-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(21, 20, 24, 0.96), rgba(14, 14, 17, 0.98));
    color: var(--rtr-text);
    box-shadow: 0 24px 50px rgba(16, 14, 18, 0.24);
}

.rtr-product-purchase-card__label {
    margin: 0 0 8px;
    color: var(--rtr-accent-2);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rtr-product-purchase-card h2,
.rtr-product-purchase-card__price {
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.06;
}

.rtr-product-purchase-card p {
    color: #d0c7ba;
}

.rtr-product-purchase-card .button-row,
.rtr-product-purchase-card form.cart {
    margin-top: 18px;
}

.rtr-product-purchase-card form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.rtr-product-hero__media {
    display: grid;
    gap: 16px;
}

.rtr-product-hero__frame {
    padding: 16px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(150, 211, 95, 0.2), transparent 36%), linear-gradient(180deg, rgba(20, 19, 24, 0.98), rgba(9, 9, 12, 1));
    box-shadow: 0 24px 60px rgba(16, 14, 18, 0.28);
}

.rtr-product-hero__image,
.rtr-product-hero__frame img {
    width: 100%;
    border-radius: 20px;
}

.rtr-product-hero__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.rtr-product-hero__thumbs figure,
.rtr-card-showcase__grid figure {
    margin: 0;
}

.rtr-product-hero__thumbs img,
.rtr-card-showcase__grid img {
    width: 100%;
    border-radius: 18px;
}

.rtr-concept-band {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.rtr-concept-band__intro h2,
.rtr-section-heading h2,
.rtr-section-heading--split h2,
.rtr-detail-card h2 {
    margin: 14px 0 10px;
    color: var(--rtr-dark-text);
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    line-height: 1.04;
}

.rtr-concept-band__intro p,
.rtr-section-heading--split p,
.rtr-detail-card p,
.rtr-detail-card li,
.rtr-rich-copy p,
.rtr-rich-copy li {
    color: #5e5142;
}

.rtr-concept-band__cards,
.rtr-steps-grid,
.rtr-card-showcase__grid {
    display: grid;
    gap: 18px;
}

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

.rtr-concept-band__cards h3,
.rtr-steps-grid h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--rtr-dark-text);
    font-family: Georgia, 'Times New Roman', serif;
}

.rtr-section-heading {
    max-width: 60ch;
}

.rtr-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 20px;
    align-items: end;
}

.rtr-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rtr-steps-grid article span {
    color: #52712d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rtr-card-showcase__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rtr-card-showcase__grid figure {
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(32, 24, 17, 0.08);
}

.rtr-product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: start;
}

.rtr-product-detail-grid__side {
    display: grid;
    gap: 18px;
}

.rtr-rich-copy > :first-child {
    margin-top: 0;
}

.rtr-checklist {
    margin: 0;
    padding-left: 1.2rem;
}

.rtr-product-page--simple {
    display: grid;
    gap: 24px;
}

.rtr-product--primary .section--page {
    background:
        radial-gradient(circle at top, rgba(150, 211, 95, 0.16), transparent 24%),
        linear-gradient(180deg, #121014 0%, #0d0c10 100%);
    color: var(--rtr-text);
}

.rtr-product--primary .content-shell,
.rtr-product--primary .content-shell.content-shell--wide,
.rtr-product--primary .woocommerce {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.rtr-buy-layout,
.rtr-buy-details {
    display: grid;
    gap: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.rtr-buy-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
    align-items: start;
    gap: 34px;
}

.rtr-buy-layout__media {
    display: grid;
    gap: 14px;
}

.rtr-buy-layout__image-frame {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.rtr-buy-layout__image-frame::before {
    content: "";
    position: absolute;
    inset: 8% 14%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(150, 211, 95, 0.18), transparent 68%);
    filter: blur(14px);
}

.rtr-buy-layout__image,
.rtr-buy-layout__image-frame img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 26px;
}

.rtr-buy-layout__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.rtr-buy-layout__thumbs figure {
    margin: 0;
}

.rtr-buy-layout__thumbs img {
    width: 100%;
    border-radius: 16px;
    border: 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.rtr-buy-layout__panel h1 {
    margin: 16px 0 12px;
    color: var(--rtr-text);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1;
    max-width: 12ch;
}

.rtr-buy-layout__lede {
    margin: 0;
    color: var(--rtr-muted);
    font-size: 1.05rem;
    max-width: 48ch;
}

.rtr-buy-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}

.rtr-buy-badges span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--rtr-text);
    font-weight: 600;
}

.rtr-buy-badges span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(150, 211, 95, 0.55);
}

.rtr-buy-card {
    margin-top: 20px;
    padding: 22px 0 0;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--rtr-text);
    box-shadow: none;
}

.rtr-buy-card__label {
    margin: 0 0 8px;
    color: var(--rtr-accent-2);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rtr-buy-card h2,
.rtr-buy-card__price {
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.06;
}

.rtr-buy-card p {
    color: #d2c9bc;
}

.rtr-buy-card__microcopy {
    margin-top: 14px;
    color: #a9a091;
    font-size: 0.92rem;
}

.rtr-buy-card form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.rtr-buy-secondary {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rtr-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.rtr-trust-strip div {
    padding: 0;
    border-top: 0;
}

.rtr-trust-strip strong {
    display: block;
    color: var(--rtr-text);
    margin-bottom: 4px;
}

.rtr-trust-strip span {
    color: var(--rtr-muted);
}

.rtr-buy-secondary div {
    padding-top: 0;
    border-top: 0;
}

.rtr-buy-secondary strong {
    display: block;
    color: var(--rtr-text);
    margin-bottom: 4px;
}

.rtr-buy-secondary span,
.rtr-buy-detail p,
.rtr-buy-detail li,
.rtr-rich-copy p,
.rtr-rich-copy li {
    color: var(--rtr-muted);
}

.rtr-buy-details {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: start;
    gap: 40px;
    padding-top: 34px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rtr-buy-detail {
    padding: 0;
}

.rtr-buy-detail + .rtr-buy-detail {
    padding-left: 0;
    border-left: 0;
}

.rtr-buy-detail strong,
.rtr-buy-detail h2,
.rtr-buy-detail h3,
.rtr-rich-copy h2,
.rtr-rich-copy h3 {
    color: var(--rtr-text);
}

.rtr-buy-detail .eyebrow {
    color: var(--rtr-accent-2);
    border-color: rgba(150, 211, 95, 0.25);
    background: rgba(150, 211, 95, 0.08);
}

.rtr-product--primary .site-footer {
    background: transparent;
}

.rtr-buy-steps {
    margin: 16px 0 0;
    padding-left: 1.2rem;
}

.section--contact {
    background:
        radial-gradient(circle at top, rgba(150, 211, 95, 0.14), transparent 24%),
        linear-gradient(180deg, #121014 0%, #0d0c10 100%);
    color: var(--rtr-text);
}

.section--shop {
    background:
        radial-gradient(circle at top, rgba(150, 211, 95, 0.14), transparent 24%),
        linear-gradient(180deg, #121014 0%, #0d0c10 100%);
    color: var(--rtr-text);
}

.section--shop h1,
.section--shop h2,
.section--shop h3,
.section--shop .content-body,
.section--shop .woocommerce-loop-product__title,
.section--shop .price,
.section--shop .woocommerce-Price-amount {
    color: var(--rtr-text);
}

.shop-page {
    display: grid;
    gap: 28px;
}

.shop-page__hero,
.shop-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
    gap: 24px;
    align-items: start;
}

.shop-page__copy h1 {
    margin: 12px 0 12px;
    font-size: clamp(2.1rem, 3vw, 3.1rem);
    line-height: 1;
    max-width: 12ch;
}

.shop-page__lede,
.shop-feature__lede,
.shop-page__support p {
    color: var(--rtr-muted);
}

.shop-page__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.shop-page__stats span {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.shop-page__stats span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(150, 211, 95, 0.55);
}

.shop-page__support,
.shop-feature__purchase {
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(21, 20, 24, 0.96), rgba(14, 14, 17, 0.98));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.shop-page__support h2,
.shop-feature__content h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.06;
}

.shop-feature__media img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    border-radius: 24px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.shop-feature__purchase {
    margin-top: 18px;
}

.shop-feature__label {
    margin: 0 0 8px;
    color: var(--rtr-accent-2);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-feature__price {
    margin: 0 0 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    line-height: 1.04;
}

.shop-feature__price--text {
    color: var(--rtr-text);
}

.shop-collection .section-heading {
    margin-bottom: 18px;
}

.section--shop .woocommerce ul.products {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section--shop .woocommerce ul.products li.product {
    background: linear-gradient(180deg, rgba(21, 20, 24, 0.96), rgba(14, 14, 17, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.section--shop .woocommerce ul.products li.product .price {
    color: var(--rtr-accent-2);
}

.section--shop .woocommerce ul.products li.product .button {
    width: 100%;
    justify-content: center;
}

.section--contact .content-header h1,
.section--contact .entry-title,
.section--shop .content-header h1,
.section--shop .entry-title,
.section--contact h1,
.section--contact h2,
.section--contact h3,
.section--shop h1,
.section--shop h2,
.section--shop h3 {
    color: var(--rtr-text);
}

.contact-page {
    display: grid;
    gap: 44px;
}

.contact-page__hero,
.contact-page__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-page__copy h1 {
    margin: 14px 0 14px;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.98;
    max-width: 10ch;
}

.contact-page__lede {
    max-width: 54ch;
    margin: 0;
    color: var(--rtr-muted);
    font-size: 1.05rem;
}

.contact-page__routes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.contact-page__routes div {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page__routes strong,
.contact-page__notes .eyebrow {
    display: block;
    margin-bottom: 6px;
}

.contact-page__routes span,
.contact-page__form > p {
    color: var(--rtr-muted);
}

.contact-page__form h2 {
    margin: 14px 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.02;
}

.contact-page__form {
    max-width: 760px;
}

.contact-page__form-wrap {
    margin-top: 20px;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(21, 20, 24, 0.96), rgba(14, 14, 17, 0.98));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.contact-page__form-wrap .srfm-form {
    display: grid;
    gap: 14px;
    width: 100%;
}

.contact-page__form-wrap .srfm-common-error-message[hidden] {
    display: none !important;
}

.contact-page__form-wrap *,
.contact-page__form-wrap *::before,
.contact-page__form-wrap *::after {
    box-sizing: border-box;
}

.contact-page__form-wrap .srfm-block,
.contact-page__form-wrap .srfm-block-single,
.contact-page__form-wrap .srfm-block-wrap,
.contact-page__form-wrap .srfm-email-block,
.contact-page__form-wrap .srfm-email-block-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.contact-page__form-wrap input[type="text"],
.contact-page__form-wrap input[type="email"],
.contact-page__form-wrap input[type="tel"],
.contact-page__form-wrap textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--rtr-text);
}

.contact-page__form-wrap textarea {
    min-height: 160px;
}

.contact-page__form-wrap .srfm-error-message {
    color: #ffb4b4;
}

.contact-page__form-wrap button,
.contact-page__form-wrap input[type="submit"] {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.contact-page__form-wrap button,
.contact-page__form-wrap input[type="submit"],
.contact-page__form-wrap .srfm-submit,
.contact-page__form-wrap .srfm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rtr-accent), #95d35f);
    color: #101010;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(149, 211, 95, 0.2);
}

.not-found p {
    max-width: 48ch;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero__grid,
    .pitch-grid,
    .site-footer__grid,
    .cta-box,
    .section-heading--split,
    .proof-strip__grid,
    .card-gallery__grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
    }

    .hero__grid,
    .pitch-grid,
    .site-footer__grid,
    .cta-box,
    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 520px;
    }

    .hero__stats,
    .footer-facts,
    .proof-strip__grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product .woocommerce div.product,
    .rtr-story-grid {
        grid-template-columns: 1fr;
    }

    .rtr-product-hero,
    .rtr-concept-band,
    .rtr-product-detail-grid,
    .rtr-section-heading--split,
    .rtr-concept-band__cards,
    .rtr-card-showcase__grid,
    .rtr-buy-layout,
    .rtr-buy-details,
    .shop-page__hero,
    .shop-feature,
    .contact-page__hero,
    .contact-page__body {
        grid-template-columns: 1fr;
    }

    .rtr-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product .woocommerce div.product .images {
        position: static;
    }

    .rtr-product-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rtr-product-hero__copy h1 {
        max-width: 12ch;
    }

    .rtr-buy-layout__panel h1 {
        max-width: none;
    }

    .contact-page__copy h1 {
        max-width: none;
    }

    .shop-page__copy h1 {
        max-width: none;
    }

    .contact-page__routes {
        grid-template-columns: 1fr;
    }

    .card-gallery__marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .rtr-trust-strip {
        grid-template-columns: 1fr;
    }

    .rtr-buy-detail + .rtr-buy-detail {
        padding-left: 0;
        padding-top: 24px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 22px;
        background: rgba(17, 16, 21, 0.97);
        border: 1px solid var(--rtr-line);
        box-shadow: var(--rtr-shadow);
    }

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

    .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero,
    .section,
    .section--page {
        padding: 64px 0;
    }

    .hero__grid {
        min-height: auto;
        padding-top: 22px;
    }

    .hero__visual {
        min-height: 420px;
    }

    .hero__card {
        width: min(48vw, 210px);
    }

    .rtr-product-callout,
    .rtr-story-card,
    .single-product .woocommerce-tabs {
        padding: 22px;
    }

    .rtr-product-hero,
    .rtr-concept-band,
    .rtr-steps-section,
    .rtr-card-showcase,
    .rtr-product-detail-grid,
    .rtr-buy-layout,
    .rtr-buy-details,
    .contact-page__support,
    .contact-page__form-wrap {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .hero__stats,
    .footer-facts,
    .proof-strip__grid,
    .steps-grid,
    .faq-grid,
    .card-gallery__grid,
    .rtr-product-facts,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .rtr-product-hero__thumbs,
    .rtr-steps-grid,
    .rtr-concept-band__cards,
    .rtr-card-showcase__grid,
    .rtr-buy-layout__thumbs {
        grid-template-columns: 1fr;
    }

    .content-shell,
    .content-shell--wide,
    .woocommerce div.product,
    .woocommerce-cart-form,
    .cart-collaterals,
    .woocommerce-checkout .woocommerce,
    .woocommerce-account .woocommerce,
    .cta-box {
        padding: 22px;
    }

    .hero h1 {
        max-width: 11ch;
    }

    .hero__visual {
        min-height: 360px;
    }

    .hero__card {
        width: 44vw;
    }

    .brand__text small {
        display: none;
    }

    .brand__logo img {
        height: 54px;
    }

    .card-gallery__track {
        gap: 16px;
        animation-duration: 10s;
    }

    .card-gallery__marquee .card-tile {
        flex-basis: 150px;
    }

    .rtr-product-hero {
        padding: 18px;
    }

    .rtr-product-purchase-card {
        padding: 20px;
    }

    .rtr-buy-card {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card-gallery__track,
    .card-tile {
        animation: none;
    }
}
