/*! ============================================================
   3. ROW BACKGROUND CLASSES
   Usage: add ONE of these to any <section> or <div>
   Everything inside will automatically use the right colors.
   ============================================================ */

.rw-bg-white {
    background: var(--white);
    border-top: 1px solid var(--parchment-dark);
}

.rw-bg-parchment {
    background: var(--parchment);
    border-top: 1px solid var(--parchment-dark);
}

.rw-bg-azure {
    background: var(--azure-light);
    border-top: 1px solid var(--azure-deep);
}

.rw-bg-azure-mid {
    background: var(--azure-mist);
    border-top: 1px solid var(--azure-deep);
}

.rw-bg-charcoal {
    background: var(--charcoal-blue);
    border-top: 1px solid var(--charcoal-light);
}

.rw-bg-charcoal-deep {
    background: var(--charcoal-blue-dark);
    border-top: 1px solid var(--charcoal-light);
}

.rw-bg-charcoal a {
    color: var(--tan);
}

.rw-bg-charcoal a:hover {
    color: var(--tan-light);
}

.rw-bg-charcoal p,
.rw-bg-charcoal address,
.rw-bg-charcoal th,
.rw-bg-charcoal td {
    color: var(--rosy-granite) !important;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

/* Generic padded section wrapper */
.rw-section {
    padding: var(--section-pad-v) var(--section-pad-h);
}

/* Centered narrow container (for text-only sections) */
.rw-container {
    max-width: 860px;
    margin: 0 auto;
}

.rw-container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

/* Split layout: 50/50 image + content */
.rw-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.fl-module.rw-split:not([data-accepts]):before,
.fl-module.rw-split:not([data-accepts]):after {
    content: none;
}

/* Flip the column order (image right) */
.rw-split.rw-flip {
    direction: rtl;
}

.rw-split.rw-flip>* {
    direction: ltr;
}

/* Content pane inside a split */
.rw-content {
    padding: var(--section-pad-v) var(--content-pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Actions row (buttons) */
.rw-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


/*! RW-5050
---------------------------------------*/
.rw-50-50 .fl-row-content-wrap {
    padding: 0;
}

.rw-50-50 .rw-50-50-has-content {
    padding: clamp(0rem, -1.071rem + 5.357vw, 3.75rem);
}

.rw-50-50 .rw-50-50-has-content.extra-padding {
    padding-top: clamp(3.75rem, 1.974rem + 8.88vw, 11.25rem);
    padding-bottom: clamp(3.75rem, 1.974rem + 8.88vw, 11.25rem);
}


/* Center text utility */
.rw-center {
    text-align: center;
}

.rw-center .divider {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   5. TYPOGRAPHY
   Defaults work on light backgrounds.
   .rw-bg-charcoal overrides below.
   ============================================================ */

/* Eyebrow label */
.eyebrow {
    display: flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 12px;
}

.eyebrow--center {
    justify-content: center;
}

/* Tagline (italic serif, sits below h2) */
.tagline {
    font-family: var(--font-serif);
    font-size: var(--h4-size);
    font-style: italic;
    font-weight: 400;
    color: var(--rosy-granite);
    margin-top: 6px;
    display: block;
    line-height: 1.3;
}

/* Body paragraph */

/* First child: no top margin (when directly under h2 or eyebrow) */
.rw-content>p:first-of-type {
    margin-top: 0;
}

/* Small print */
.fine-print {
    font-size: clamp(14px, 1.25rem, 16px);
    color: var(--rosy-granite);
    line-height: 1.7;
    font-style: italic;
    margin-top: 14px;
    display: block;
}

/* Divider line under heading */
.divider {
    width: 36px;
    height: 2px;
    background: var(--tan);
    margin: 18px 0;
    flex-shrink: 0;
}

/* --- Dark background overrides --- */
.rw-bg-charcoal h2,
.rw-bg-charcoal-deep h2,
.rw-bg-charcoal h3,
.rw-bg-charcoal-deep h3 {
    color: var(--white);
}

.rw-bg-charcoal h2 em,
.rw-bg-charcoal-deep h2 em {
    color: var(--azure-mist);
}

.rw-bg-charcoal p,
.rw-bg-charcoal-deep p {
    color: var(--rosy-granite);
}

.rw-bg-charcoal .tagline,
.rw-bg-charcoal-deep .tagline {
    color: var(--silver);
}

.rw-bg-charcoal .eyebrow,
.rw-bg-charcoal-deep .eyebrow {
    color: var(--tan);
}

/* same; listed for clarity */

.rw-bg-charcoal .divider,
.rw-bg-charcoal-deep .divider {
    background: var(--tan);
}

.rw-bg-charcoal .fine-print,
.rw-bg-charcoal-deep .fine-print {
    color: rgba(203, 201, 200, 0.5);
}


/* ============================================================
   6. BULLETS
   ============================================================ */

/* Default bullets (light bg) */
.bullets {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.bullets li {
    font-size: var(--p-size);
    color: var(--charcoal-blue);
    padding: 12px 0;
    border-bottom: 1px solid var(--parchment);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.bullets li::before {
    content: '✦';
    font-size: 9px;
    color: var(--tan);
    flex-shrink: 0;
    margin-top: 6px;
}

/* Style variant: plain (no border, tighter) */
.bullets--plain li {
    border-bottom: none;
    padding: 5px 0;
}

.bullets--plain li strong {
    width: fit-content;
}

/* Style variant: spacious */
.bullets--spacious li {
    padding: 13px 0;
}

.bullets--spacious::before {
    width: 8%;
}

.bullets--spacious strong {
    width: 32%;
}

.bullets--spacious span {
    width: 60%;
}

/* Dark bg overrides */
.rw-bg-charcoal .bullets li,
.rw-bg-charcoal-deep .bullets li {
    color: var(--silver);
    border-bottom-color: rgba(203, 201, 200, 0.12);
}

.rw-bg-charcoal .bullets li::before,
.rw-bg-charcoal-deep .bullets li::before {
    color: var(--tan);
}

/* Parchment bg: slightly lighter border */
.rw-bg-parchment .bullets li {
    border-bottom-color: var(--parchment-dark);
}

/* Azure bg: slightly lighter border */
.rw-bg-azure-mid .bullets li {
    border-bottom-color: var(--parchment-dark);
}


/*! ============================================================
   7. BUTTONS
   ============================================================ */

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* Shared base */
.btn-primary,
.btn-outline,
.btn-text {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: clamp(0.75rem, 0.607rem + 0.714vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    white-space: nowrap;
}

/* Primary: filled mauve-bark */
.btn-primary {
    background: var(--brown);
    color: var(--white);
    padding: 14px 34px;
}

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
    background: var(--mauve-light);
    transform: translateY(-1px);
    text-decoration: none;
    border-color: none;
    box-shadow: none !important;
}

/* Text link style */
.btn-text {
    background: none;
    color: var(--brown);
    padding: 0;
    letter-spacing: 0.15em;
}

.btn-text:hover {
    color: var(--mauve-light);
}

.btn-text::after {
    content: ' →';
}

/* --- Dark bg overrides --- */
/* Primary on dark: use dusty-taupe instead of mauve-bark */
.rw-bg-charcoal .btn-primary,
.rw-bg-charcoal-deep .btn-primary {
    background: var(--tan);
}

.rw-bg-charcoal .btn-primary:hover,
.rw-bg-charcoal-deep .btn-primary:hover {
    background: var(--brown);
}

/* Outline on dark: silver border */
.rw-bg-charcoal .btn-outline,
.rw-bg-charcoal-deep .btn-outline {
    color: var(--silver);
    border-color: rgba(203, 201, 200, 0.3);
}

.rw-bg-charcoal .btn-outline:hover,
.rw-bg-charcoal-deep .btn-outline:hover {
    border-color: var(--silver);
    color: var(--white);
}

/* Text on dark */
.rw-bg-charcoal .btn-text,
.rw-bg-charcoal-deep .btn-text {
    color: var(--azure-mist);
}

/* Special: azure-mist filled button (only for dark sections) */
.btn-azure {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: var(--azure-mist);
    color: var(--charcoal-blue);
    padding: 14px 34px;
    border: none;
    transition: background 0.25s, transform 0.2s;
}

.btn-azure:hover {
    background: var(--white);
    transform: translateY(-1px);
}


/* ============================================================
   8. PILLS / TAGS
   ============================================================ */
.pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid transparent;
}

.pill-filled {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}

.pill-outline {
    background: none;
    color: var(--charcoal-blue);
    border-color: var(--silver);
}

.pill-azure {
    background: var(--azure-light);
    color: var(--charcoal-blue);
    border-color: var(--azure-deep);
}

.pill-dark {
    background: var(--charcoal-blue);
    color: var(--white);
    border-color: var(--charcoal-blue);
}

.pill-taupe {
    background: var(--tan);
    color: var(--white);
    border-color: var(--tan);
}

.pills-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


/* ============================================================
   9. CALLOUT BOX
   An inline highlighted box (price, offer, key fact)
   ============================================================ */
.callout {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    margin-bottom: 20px;
}

.callout-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rosy-granite);
}

.callout-value {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--brown);
    line-height: 1;
    margin-top: -4px;
}

/* Light bg callout */
.callout-azure {
    background: var(--azure-light);
    border: 1px solid var(--azure-deep);
}

/* Parchment callout */
.callout-parchment {
    background: var(--parchment);
    border: 1px solid var(--parchment-dark);
}

/* Dark bg callout */
.rw-bg-charcoal .callout-azure,
.rw-bg-charcoal-deep .callout-azure {
    background: rgba(218, 237, 243, 0.1);
    border-color: rgba(184, 217, 228, 0.3);
}

.rw-bg-charcoal .callout-label,
.rw-bg-charcoal-deep .callout-label {
    color: var(--rosy-granite);
}

.rw-bg-charcoal .callout-value,
.rw-bg-charcoal-deep .callout-value {
    color: var(--azure-mist);
}

/*! ═══════════════════════════════════════════
   STAT BAND — Azure Mist
   Reusable: place between any two sections
═══════════════════════════════════════════ */
.stat-band {
    gap: 24px;
    text-align: center;
}

.stat-band::before {
    content: none !important;
}

.stat {
    text-align: center;
    padding: 12px 0;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    color: var(--charcoal-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown-light);
}

.stat-note {
    font-size: clamp(14px, 1.25rem, 16px);
    color: var(--brown);
    margin-top: 4px;
    font-style: italic;
}

/* Dark bg overrides */
.rw-bg-charcoal .stat-num,
.rw-bg-charcoal-deep .stat-num {
    color: var(--white);
}

.rw-bg-charcoal .stat-label,
.rw-bg-charcoal-deep .stat-label {
    color: var(--rosy-granite);
}

/* Azure bg overrides */
.rw-bg-azure .stat-num,
.rw-bg-azure-mid .stat-num {
    color: var(--charcoal-blue);
}


/* ============================================================
   11. PROCESS STEPS
   Usage: .steps > .step (use rw-grid-4 as parent)
   ============================================================ */
.steps {
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--silver);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step:hover .step-circle {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}

.step p {
    font-size: 14px;
    color: var(--brown);
    margin-top: 0;
}

/* Dark bg overrides */
.rw-bg-charcoal .step-circle,
.rw-bg-charcoal-deep .step-circle {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    color: var(--white);
}

.rw-bg-charcoal .step-title,
.rw-bg-charcoal-deep .step-title {
    color: var(--silver);
}

/* Parchment bg */
.rw-bg-parchment .step-circle {
    background: var(--white);
}

.rw-bg-parchment .steps::before {
    background: var(--parchment-dark);
}

/* ============================================================
   Vertical PROCESS STEPS
   ============================================================ */

.rw-steps-v {
    display: flex;
    flex-direction: column;
}

.rw-step-v {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 26px 0;
    border-bottom: 1px solid var(--parchment-dark);
}

.rw-step-v:last-child {
    border-bottom: none;
}

.rw-step-v-num {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--silver);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.rw-step-v-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-blue);
    margin-bottom: 6px;
}

.rw-step-v-body {
    font-size: 16px;
    color: var(--brown-light);
    font-weight: 400;
    line-height: 1.8;
}

/* Context: azure background */
.rw-bg-azure .rw-step-v {
    border-bottom-color: var(--azure-deep);
}

.rw-bg-azure .rw-step-v-num {
    color: var(--azure-mist-dark);
}

.rw-bg-azure .rw-step-v-title {
    color: var(--charcoal-blue);
}


/* ============================================================
   12. ACCORDION
   Usage: .accordion > .accordion-item
   ============================================================ */
.rw-accordion {
    margin-bottom: 20px;
}

.accordion-item {
    border-top: 1px solid var(--parchment-dark);
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--parchment-dark);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    text-align: left;
}

.accordion-trigger:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
    color: var(--brown);
}

.accordion-q {
    font-family: var(--font-serif);
    font-size: var(--h5-size);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--charcoal-blue);
    transition: color 0.2s;
}

.accordion-trigger:hover .accordion-q {
    color: var(--brown);

}

.accordion-icon {
    font-size: 18px;
    color: var(--silver);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
    line-height: 1;
    font-weight: 300;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
    color: var(--brown);
}

.accordion-item.open .accordion-body {
    max-height: 400px;
}

.accordion-body p {
    font-size: var(--p-size);
    padding-bottom: 16px;
    margin-top: 0;
}

/* Dark bg overrides */
.rw-bg-charcoal .accordion-item,
.rw-bg-charcoal-deep .accordion-item {
    border-color: rgba(203, 201, 200, 0.15);
}

.rw-bg-charcoal .accordion-q,
.rw-bg-charcoal-deep .accordion-q {
    color: var(--silver);
}

.rw-bg-charcoal .accordion-trigger:hover .accordion-q,
.rw-bg-charcoal-deep .accordion-trigger:hover .accordion-q {
    color: var(--azure-mist);
}

/* Parchment bg */
.rw-bg-parchment .accordion-item {
    border-color: var(--parchment-dark);
}


/* ============================================================
   13. SAFETY NOTE
   ============================================================ */
.safety-note {
    font-size: var(--p-size);
    color: var(--rosy-granite);
    line-height: 1.7;
    padding: 14px 16px;
    font-style: italic;
    margin-bottom: 20px;
    background: var(--parchment);
    border-left: 3px solid var(--silver);
}

.safety-note strong {
    color: var(--rosy-granite);
    font-style: normal;
}

/* On parchment bg: slightly different background */
.rw-bg-parchment .safety-note {
    background: var(--white);
}

/* On dark bg */
.rw-bg-charcoal .safety-note,
.rw-bg-charcoal-deep .safety-note {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(203, 201, 200, 0.2);
    color: rgba(203, 201, 200, 0.6);
}

/* On azure bg */
.rw-bg-azure .safety-note,
.rw-bg-azure-mid .safety-note {
    background: var(--white);
    border-color: var(--azure-deep);
    color: var(--rosy-granite);
}

/* ============================================================
   15. PAGE HEADER / BREADCRUMBS
   ============================================================ */
.page-header {
    margin-top: 76px;
    background: var(--parchment);
    border-bottom: 1px solid var(--parchment-dark);
    padding: 48px var(--section-pad-h) 44px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.breadcrumbs a {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rosy-granite);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--brown);
}

.breadcrumbs-sep {
    font-size: 9px;
    color: var(--silver);
}

.breadcrumbs-current {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brown);
}

.page-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal-blue);
}

.page-title em {
    font-style: italic;
    color: var(--brown);
}

.page-header-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

/* ============================================================
   17. STICKY SIDEBAR CTA
   ============================================================ */
.sidebar-cta {
    position: fixed;
    right: 24px;
    bottom: 80px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.sidebar-cta.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.sidebar-cta-btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--brown);
    border: none;
    padding: 20px 12px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: background 0.25s;
    box-shadow: 0 4px 20px rgba(104, 77, 68, 0.35);
    font-family: var(--font-sans);
}

.sidebar-cta-btn:hover {
    background: var(--mauve-light);
}

.sidebar-cta-top {
    writing-mode: horizontal-tb;
    transform: none;
    background: var(--white);
    border: 1px solid var(--silver);
    color: var(--charcoal-blue);
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    font-family: var(--font-sans);
}

.sidebar-cta-top:hover {
    border-color: var(--brown);
    color: var(--brown);
}

/* 18. INFO CARD ──
   Usage: rw-grid-3 > .info-card
   Works on rw-bg-white, rw-bg-parchment, rw-bg-azure
──────────────────────────────────── */
.info-card {
    padding: 36px 30px 32px;
    border: 1px solid var(--silver);
    background: var(--white);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brown);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.info-card:hover {
    box-shadow: 0 8px 32px rgba(56, 61, 80, .08);
    transform: translateY(-3px);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
    color: var(--tan);
}

.info-card-icon svg {
    width: 32px;
    height: 32px;
}

.info-card-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal-blue);
    margin-bottom: 12px;
    display: block;
}

.info-card p {
    font-size: 16px;
    margin-top: 0;
}

/* On parchment bg — card becomes white (good contrast) */
.rw-bg-parchment .info-card {
    background: var(--white);
}

/* On azure bg — card becomes white */
.rw-bg-azure .info-card,
.rw-bg-azure-mid .info-card {
    background: var(--white);
    border-color: var(--azure-deep);
}

/* On charcoal — card goes dark */
.rw-bg-charcoal .info-card,
.rw-bg-charcoal-deep .info-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(203, 201, 200, 0.15);
}

.rw-bg-charcoal .info-card-title,
.rw-bg-charcoal-deep .info-card-title {
    color: var(--white);
}

.rw-bg-charcoal .info-card::before,
.rw-bg-charcoal-deep .info-card::before {
    background: var(--azure-mist);
}


/* 19. PRICING HIGHLIGHT ──
   Usage: standalone block or inside rw-section
   Good on rw-bg-azure-mid or rw-bg-parchment
──────────────────────────────────── */
.pricing-highlight {
    border: 1px solid var(--parchment-dark);
    background: var(--white);
    padding: clamp(1.25rem, 0.625rem + 3.125vw, 2.5rem) clamp(1.375rem, 0.6875rem + 3.4375vw, 2.75rem);
    display: flex;
    gap: clamp(1.375rem, 0.6875rem + 3.4375vw, 2.75rem);
    align-items: center;
    flex-wrap: wrap;
}

.pricing-highlight-main {
    flex: 1;
    min-width: 200px;
}

.pricing-highlight-main .eyebrow {
    margin-bottom: 8px;
}

.pricing-main-num {
    font-family: var(--font-serif);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 300;
    line-height: 1;
    color: var(--brown);
    display: block;
}

.pricing-main-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rosy-granite);
    display: block;
    margin-top: 6px;
}

.pricing-divider {
    width: 1px;
    background: var(--silver);
    align-self: stretch;
    flex-shrink: 0;
    min-height: 80px;
}

.pricing-detail {
    flex: 3;
    min-width: 235px;
}

.pricing-detail p {
    margin-top: 0;
    font-size: 16px;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (min-width: 640px) {

    .pricing-options {
        flex-direction: row;
    }

}



.pricing-option {
    border: 1px solid var(--silver);
    padding: 14px 20px;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.pricing-option-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rosy-granite);
    display: block;
    margin-bottom: 4px;
}

.pricing-option-price {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal-blue);
    display: block;
    line-height: 1;
}

.pricing-option.featured {
    background: var(--brown);
    border-color: var(--brown);
}

.pricing-option.featured .pricing-option-label {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-option.featured .pricing-option-price {
    color: var(--white);
}

/* On azure mid */
.rw-bg-azure-mid .pricing-highlight {
    border-color: var(--azure-deep);
}

/* 20. CITATION CARD ──
   Usage: rw-grid-2 or rw-grid-3 > .citation-card
   Designed for rw-bg-parchment or rw-bg-azure
──────────────────────────────────── */
.citation-card {
    background: var(--white);
    border: 1px solid var(--silver);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.3s;
}

.citation-card:hover {
    box-shadow: 0 6px 24px rgba(56, 61, 80, .08);
}

.citation-source {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
}

.citation-date {
    font-size: 12px;
    color: var(--silver);
}

.citation-body {
    font-size: var(--p-size);
    color: var(--rosy-granite);
    line-height: 1.8;
    flex: 1;
}

p.citation-body:last-of-type {
    margin-bottom: 0;
}

.citation-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.citation-link:hover {
    color: var(--mauve-light);
}

.citation-link::after {
    content: ' →';
}

/* On azure bg */
.rw-bg-azure .citation-card,
.rw-bg-azure-mid .citation-card {
    border-color: var(--azure-deep);
}

/* On parchment bg */
.rw-bg-parchment .citation-card {
    border-color: var(--parchment-dark);
}

/* 21. MISSION QUOTE ──
   Usage: standalone full-width block, typically rw-bg-charcoal
──────────────────────────────────── */
.mission-quote {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 0;
}

.mission-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.8vw, 34px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    display: block;
    margin-bottom: 32px;
}

.mission-quote-text em {
    color: var(--azure-mist);
    font-style: normal;
}

/* 22. DISCLAIMER BLOCK ── */
.disclaimer-block {
    border: 1px solid var(--parchment-dark);
    background: var(--parchment);
    padding: 20px 24px;
    max-width: 920px;
    margin: 30px auto 0;
}

.disclaimer-block p {
    font-size: 14px;
    color: var(--silver);
    font-style: italic;
    line-height: 1.7;
    margin-top: 0;
}

.disclaimer-block p:last-of-type {
    margin-bottom: 0;
}

.rw-bg-charcoal .disclaimer-block,
.rw-bg-charcoal-deep .disclaimer-block {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(203, 201, 200, 0.15);
}


.rw-bg-beige p {
    color: var(--rosy-granite);
}

.rw-bg-beige .btn-outline {
    color: var(--tan);
    border: 1px solid var(--tan);
}

.rw-bg-beige .btn-outline:hover,
.rw-bg-beige .btn-outline:focus,
.rw-bg-beige .btn-outline:active {
    border-color: var(--tan-light);
    color: var(--tan-light);
}

.rw-bg-beige .btn-primary {
    color: var(--white);
    background: var(--tan);
}

.rw-bg-beige .btn-primary:hover,
.rw-bg-beige .btn-primary:focus,
.rw-bg-beige .btn-primary:active {
    background: var(--tan-light);
}

.rw-bg-pale-blue {
    background: var(--azure-mist);
    border-top: 1px solid var(--azure-deep);
    border-bottom: 1px solid var(--azure-deep);
}

.rw-bg-pale-blue-light {
    background-color: var(--azure-light);
}



/* ============================================================
   INJECTION-GRID COMPONENT
   rw-grid-3 provides the column structure.
   injection-grid added alongside it for cell styling only.

   Usage: <div class="rw-grid-3 injection-grid">
   ============================================================ */

/* Override rw-grid-3 gap — cells sit flush, borders collapse */
.rw-grid-2.injection-grid,
.rw-grid-3.injection-grid {
    gap: 0;
    margin-top: 28px;
}

.injection-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 22px;
    background: var(--white);
    border: 1px solid var(--silver);
    margin: -1px 0 0 -1px;
    text-decoration: none;
    color: var(--charcoal-blue);
    font-size: var(--small-text);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
    position: relative;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

/* Left accent bar slides in on hover */
.injection-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brown);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
}

.injection-link:hover {
    background: var(--parchment);
    color: var(--brown);
    padding-left: 28px;
    z-index: 1;
    text-decoration: none;
}

.injection-link:hover::before {
    transform: scaleY(1);
}

.injection-link.active {
    background: var(--parchment);
    color: var(--brown);
    padding-left: 28px;
    pointer-events: none;
}

.injection-link-arrow {
    font-size: 14px;
    color: var(--silver);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}

.injection-link:hover .injection-link-arrow {
    color: var(--brown);
    transform: translateX(3px);
}

/* Context: on parchment bg, hover goes azure */
.rw-bg-parchment .injection-link {
    background: var(--white);
    border-color: var(--parchment-dark);
}

.rw-bg-parchment .injection-link:hover {
    background: var(--azure-light);
    color: var(--brown);
}

/* Context: on azure bg, hover goes parchment */
.rw-bg-azure-mid .injection-link,
.rw-bg-azure .injection-link {
    background: var(--white);
    border-color: var(--azure-deep);
}

.rw-bg-azure-mid .injection-link:hover,
.rw-bg-azure .injection-link:hover {
    background: var(--parchment);
    color: var(--brown);
}

.rw-fill-container .photo-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rw-fill-container .photo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   RESPONSIVE
   Breakpoints: 1024 / 768 / 480
   ============================================================ */

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {

    :root {
        --section-pad-v: 60px;
        --section-pad-h: 40px;
        --content-pad: 44px;
    }

    /* Sidebar layouts tighten gap */
    .rw-col-sidebar-right,
    .rw-col-sidebar-left {
        gap: 48px;
    }

    /* Injection grid stays 2-col on tablet */
    .rw-grid-3.injection-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   DOSAGE BOX
   Small standalone component for the recommended dosage.
   ============================================================ */
.dosage-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 20px 24px;
    border: 1px solid var(--parchment-dark);
    background: var(--white);
}

.dosage-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--tan);
}

.dosage-icon svg {
    width: 100%;
    height: 100%;
}

.dosage-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tan);
    display: block;
    margin-bottom: 2px;
}

.dosage-value {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal-blue);
    display: block;
    line-height: 1.2;
}

/* On parchment bg */
.rw-bg-parchment .dosage-box {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--parchment-dark);
}


/* EQUIPMENT CARD — for the Mecotec feature */
.equipment-card {
    background: var(--white);
    border: 1px solid var(--silver);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    overflow: hidden;
}

.equipment-img {
    background: var(--azure-light);
    min-height: 320px;
    position: relative;
    border-right: 1px solid var(--azure-deep);
}

.equipment-content {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-name {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal-blue);
    margin-bottom: 4px;
}

.equipment-name em {
    font-style: italic;
    color: var(--brown);
}

.rw-bg-parchment .equipment-card {
    border-color: var(--parchment-dark);
}

.rw-bg-parchment .equipment-img {
    background: var(--white);
    border-color: var(--parchment-dark);
}


/*! RW Footnotes ------------------------------*/

.rw-footnotes ol {
    padding-left: 20px;
}

.rw-footnotes ol li {
    font-size: 14px;
}




/* Rich Plugins Reviews Overrides
---------------------------------------*/

.rpi {
    --card-bg-color: #fff !important;
    --card-bg: #fff !important;
    --card-br-color: #E5E7EB !important;
    --name-fs: 16px !important;
    --font-family: 'DM Sans' !important;
}

.rpi-slider-btn {
    --btn-justify-content: flex-start !important;
}

.rpi-list .rpi-slider-btn {
    --btn-justify-content: flex-end !important;
}

/*! ─────────────────────────────────────────
   LOCATION MODAL
───────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(39, 43, 56, 0.65);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

#locationModal .modal {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 90%;
    max-width: 600px;
    height: auto;
    overflow: visible;
    background: var(--white);
    border-top: 4px solid var(--brown);
    padding: 52px;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--rosy-granite);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--brown);
}

.modal-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 10px;
}

h2.modal-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--charcoal-blue);
    margin-bottom: 8px;
}

.modal-sub {
    font-size: 13px;
    color: var(--rosy-granite);
    margin-bottom: 32px;
}

.modal-loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
}

.modal-loc-btn {
    padding: 16px 20px;
    border: 1px solid var(--silver);
    background: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.modal-loc-btn:hover {
    border-color: var(--brown);
    background: rgba(104, 77, 68, 0.04);
    text-decoration: none;
}

.modal-loc-state {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 0;
}

.modal-loc-city {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal-blue);
    line-height: 1.3;
}

.btn-outline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal-blue);
    background: none;
    border: 1px solid var(--silver);
    border-radius: 3px;
    padding: 14px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    border-color: var(--brown);
    color: var(--brown);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--charcoal-blue);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.fancybox-thumbs__list a:before {
    border: 6px solid var(--azure-mist-rich);
}

.chillrx-hours-table td {
    padding: 0 10px 0 0;
}


.overall-reviews .rpi-card-inner {
    background-color: #f1f1f1 !important;
}