/* parosh — Unique editorial UI (Hearth & Ledger) */

.rb-site {
    --rb-ink: #1E1812;
    --rb-ink-soft: #5C5348;
    --rb-paper: #F7F2E8;
    --rb-paper-warm: #EDE6D6;
    --rb-paper-dark: #DDD4C4;
    --rb-spice: #B85C38;
    --rb-spice-glow: #D4844A;
    --rb-leaf: #5A7D6A;
    --rb-leaf-soft: #7A9A88;
    --rb-gold: #C4893A;
    --rb-walnut: #4A3728;
    --rb-espresso: #2A2118;
    --rb-cream: #FFFBF4;
    --rb-serif: 'Instrument Serif', Georgia, serif;
    --rb-sans: 'DM Sans', system-ui, sans-serif;
    --rb-radius: 4px;
    --rb-radius-lg: 20px;
    --rb-shadow: 0 24px 80px rgba(20, 18, 16, 0.12);
    --rb-line: rgba(42, 33, 24, 0.1);

    font-family: var(--rb-sans);
    color: var(--rb-ink-soft);
    background: var(--rb-paper);
    -webkit-font-smoothing: antialiased;
}

.rb-site .navbar { display: none !important; }
.rb-site .footer { display: none !important; }

.rb-container { max-width: 1275px; margin: 0 auto; padding: 0 28px; }
.rb-main { min-height: 60vh; }

/* ── Nav ── */
.rb-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 20px;
    pointer-events: none;
}

.rb-nav {
    pointer-events: auto;
    max-width: 1275px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 12px 10px 20px;
    background: rgba(255, 251, 244, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 55, 40, 0.1);
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(42, 33, 24, 0.08);
}

.rb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--rb-ink);
    flex-shrink: 0;
}

.rb-logo-brand {
    display: block;
    height: 26px;
    width: auto;
}

.parosh-brand-img {
    display: block;
    height: 100%;
    width: auto;
}

.rb-logo-wordmark {
    display: block;
    height: 28px;
    width: auto;
    max-width: 148px;
}

.rb-logo-mark-img {
    display: block;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.rb-logo-text {
    font-family: var(--rb-serif);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--rb-walnut);
}

.rb-logo-text em {
    font-style: italic;
    color: var(--rb-spice);
}

.rb-logo-light { color: var(--rb-cream); }
.rb-logo-light .rb-logo-text { color: var(--rb-cream); }

.rb-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.rb-nav-links a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rb-ink-soft);
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.rb-nav-links a:hover,
.rb-nav-links a.is-active {
    background: var(--rb-paper-warm);
    color: var(--rb-ink);
}

.rb-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rb-nav-phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--rb-ink-soft);
    text-decoration: none;
    padding-right: 8px;
    border-right: 1px solid var(--rb-line);
    margin-right: 4px;
}

.rb-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.rb-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rb-ink);
    border-radius: 2px;
}

/* Buttons */
.rb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--rb-sans);
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.rb-btn-spice {
    background: linear-gradient(135deg, var(--rb-spice) 0%, var(--rb-gold) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(184, 92, 56, 0.28);
}

.rb-btn-spice:hover {
    background: linear-gradient(135deg, var(--rb-spice-glow) 0%, #D4A03A 100%);
    transform: translateY(-1px);
}

.rb-btn-ghost {
    background: transparent;
    color: var(--rb-ink);
    border: 1px solid var(--rb-line);
}

.rb-btn-ghost:hover { background: var(--rb-paper-warm); }

.rb-btn-outline {
    background: transparent;
    color: var(--rb-ink);
    border: 1.5px solid var(--rb-ink);
}

.rb-btn-outline:hover { background: var(--rb-ink); color: #fff; }

.rb-btn-light {
    background: var(--rb-cream);
    color: var(--rb-ink);
}

.rb-btn-light:hover { background: #fff; transform: translateY(-1px); }

.rb-btn-lg { padding: 14px 28px; font-size: 15px; }
.rb-btn-block { width: 100%; }

/* Map old btn classes on marketing site */
.rb-site .btn-primary {
    background: var(--rb-spice);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(196, 75, 42, 0.35);
}

.rb-site .btn-outline {
    border-radius: 999px;
    border-color: var(--rb-ink);
}

/* ── Home hero ── */
.rb-home-hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(196, 137, 58, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(90, 125, 106, 0.12) 0%, transparent 50%),
        var(--rb-paper);
}

.rb-home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.rb-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 75px;
    align-items: center;
}

.rb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rb-gold);
    margin-bottom: 24px;
}

.rb-hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--rb-gold);
}

.rb-hero-title {
    font-family: var(--rb-serif);
    font-size: clamp(44px, 6.5vw, 76px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--rb-ink);
    margin-bottom: 28px;
}

.rb-hero-title em {
    font-style: italic;
    color: var(--rb-gold);
    display: block;
}

.rb-hero-lead {
    font-size: 18px;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
    color: var(--rb-ink-soft);
}

.rb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.rb-hero-metrics {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--rb-line);
}

.rb-hero-metric strong {
    display: block;
    font-family: var(--rb-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--rb-ink);
    line-height: 1;
}

.rb-hero-metric span {
    font-size: 13px;
    color: var(--rb-ink-soft);
    margin-top: 6px;
    display: block;
}

/* Ticket mockup */
.rb-ticket {
    position: relative;
    background: var(--rb-cream);
    border: 1px solid var(--rb-line);
    border-radius: var(--rb-radius-lg);
    box-shadow: var(--rb-shadow);
    transform: rotate(2deg);
    animation: rb-float 6s ease-in-out infinite;
}

@keyframes rb-float {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-8px); }
}

.rb-ticket::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 40%;
    bottom: 40%;
    width: 12px;
    background: radial-gradient(circle at 0 50%, transparent 5px, var(--rb-paper) 5px);
    background-size: 12px 12px;
}

.rb-ticket-head {
    padding: 16px 24px;
    border-bottom: 1px dashed var(--rb-paper-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rb-ink-soft);
}

.rb-ticket-live {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--rb-leaf);
}

.rb-ticket-live::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rb-leaf);
    animation: rb-pulse 2s infinite;
}

@keyframes rb-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.rb-ticket-body { padding: 24px; }

.rb-ticket-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.rb-ticket-step {
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    background: var(--rb-paper);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rb-ink-soft);
}

.rb-ticket-step.on {
    background: var(--rb-ink);
    color: var(--rb-cream);
}

.rb-ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--rb-line);
    font-size: 14px;
}

.rb-ticket-row:last-child { border-bottom: none; }

.rb-ticket-row em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(196, 75, 42, 0.12);
    color: var(--rb-spice);
}

.rb-ticket-row em.ready {
    background: rgba(42, 107, 88, 0.12);
    color: var(--rb-leaf);
}

.rb-float-tag {
    position: absolute;
    padding: 10px 16px;
    background: var(--rb-ink);
    color: var(--rb-cream);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--rb-shadow);
}

.rb-float-tag.one { top: -16px; right: -20px; transform: rotate(-4deg); }
.rb-float-tag.two { bottom: 40px; left: -32px; background: var(--rb-leaf); transform: rotate(3deg); }

/* Marquee */
.rb-marquee-wrap {
    padding: 20px 0;
    border-block: 1px solid var(--rb-line);
    background: var(--rb-ink);
    overflow: hidden;
}

.rb-marquee {
    display: flex;
    gap: 48px;
    animation: rb-marquee 28s linear infinite;
    width: max-content;
}

.rb-marquee span {
    font-family: var(--rb-serif);
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 253, 249, 0.45);
    white-space: nowrap;
}

.rb-marquee span strong { color: var(--rb-cream); font-weight: 400; }

@keyframes rb-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.rb-section { padding: 100px 0; }
.rb-section-warm { background: var(--rb-paper-warm); }
.rb-section-ink { background: var(--rb-ink); color: rgba(255, 253, 249, 0.75); }

.rb-section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.rb-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.rb-stamp {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rb-spice);
    border: 1.5px solid var(--rb-spice);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
    transform: rotate(-1deg);
}

.rb-section-head h2 {
    font-family: var(--rb-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--rb-ink);
    margin-bottom: 16px;
}

.rb-section-ink .rb-section-head h2 { color: var(--rb-cream); }
.rb-section-ink .rb-stamp { color: #ffb89a; border-color: #ffb89a; }

.rb-section-head p {
    font-size: 17px;
    line-height: 1.7;
}

/* Pipeline workflow */
.rb-pipeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
}

.rb-pipe-item {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 32px 28px;
    background: var(--rb-cream);
    border: 1px solid var(--rb-line);
}

.rb-pipe-item:first-child { border-radius: var(--rb-radius-lg) 0 0 var(--rb-radius-lg); }
.rb-pipe-item:last-child { border-radius: 0 var(--rb-radius-lg) var(--rb-radius-lg) 0; }

.rb-pipe-num {
    font-family: var(--rb-serif);
    font-size: 48px;
    font-style: italic;
    color: var(--rb-paper-dark);
    line-height: 1;
    margin-bottom: 16px;
}

.rb-pipe-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rb-ink);
    margin-bottom: 10px;
}

.rb-pipe-item p {
    font-size: 14px;
    line-height: 1.65;
}

.rb-pipe-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 24px;
    height: 24px;
    background: var(--rb-spice);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Outlet types band */
.rb-outlet-types {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 137, 58, 0.18) 0%, transparent 60%),
        var(--rb-ink);
    color: rgba(255, 253, 249, 0.8);
    padding: 88px 0;
}

.rb-section-head.light h2 { color: var(--rb-cream); }
.rb-section-head.light p { color: rgba(255, 253, 249, 0.72); }
.rb-section-head.light .rb-stamp { color: var(--rb-gold); border-color: rgba(196, 137, 58, 0.5); }

.rb-outlet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 48px;
    padding: 28px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 253, 249, 0.08);
    border-radius: var(--rb-radius-lg);
}

.rb-outlet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 12px;
    text-align: center;
    border-radius: var(--rb-radius);
    transition: background 0.2s;
}

.rb-outlet-item:hover {
    background: rgba(255, 253, 249, 0.06);
}

.rb-outlet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--rb-cream);
}

.rb-outlet-icon svg {
    width: 44px;
    height: 44px;
}

.rb-outlet-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 253, 249, 0.92);
}

/* Dual workflow cards */
.rb-dual-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.rb-flow-card {
    padding: 32px 28px;
    background: var(--rb-cream);
    border: 1px solid var(--rb-line);
    border-radius: var(--rb-radius-lg);
}

.rb-flow-card-solo {
    border-top: 4px solid var(--rb-gold);
}

.rb-flow-card-team {
    border-top: 4px solid var(--rb-spice);
}

.rb-flow-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rb-gold);
    margin-bottom: 12px;
}

.rb-flow-card-team .rb-flow-badge { color: var(--rb-spice); }

.rb-flow-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--rb-ink);
    margin-bottom: 8px;
}

.rb-flow-lead {
    font-size: 14px;
    line-height: 1.65;
    color: var(--rb-ink-soft);
    margin-bottom: 24px;
}

.rb-flow-steps {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rb-flow-steps li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.55;
}

.rb-flow-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rb-gold);
}

.rb-flow-card-team .rb-flow-steps li::before {
    background: var(--rb-spice);
}

.rb-flow-steps strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--rb-ink);
    margin-bottom: 2px;
}

.rb-flow-steps span {
    color: var(--rb-ink-soft);
    font-size: 13px;
}

.rb-flow-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rb-flow-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--rb-paper-warm);
    border: 1px solid var(--rb-line);
    color: var(--rb-ink);
}

.rb-dual-note {
    margin-top: 28px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    color: var(--rb-ink-soft);
    background: var(--rb-cream);
    border: 1px dashed var(--rb-line);
    border-radius: var(--rb-radius);
}

/* Mosaic features */
.rb-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.rb-mosaic-cell {
    padding: 32px;
    background: var(--rb-cream);
    border: 1px solid var(--rb-line);
    border-radius: var(--rb-radius-lg);
    transition: border-color 0.25s, transform 0.25s;
}

.rb-mosaic-cell:hover {
    border-color: var(--rb-spice);
    transform: translateY(-2px);
}

.rb-mosaic-cell.span-7 { grid-column: span 7; }
.rb-mosaic-cell.span-5 { grid-column: span 5; }
.rb-mosaic-cell.span-4 { grid-column: span 4; }
.rb-mosaic-cell.span-8 { grid-column: span 8; }

.rb-mosaic-cell h3 {
    font-family: var(--rb-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--rb-ink);
    margin-bottom: 12px;
}

.rb-mosaic-cell p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.rb-mosaic-cell a {
    font-size: 14px;
    font-weight: 700;
    color: var(--rb-spice);
    text-decoration: none;
}

.rb-mosaic-cell a:hover { text-decoration: underline; }

.rb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.rb-tags span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--rb-paper-warm);
    border-radius: 999px;
    color: var(--rb-ink-soft);
}

.rb-mosaic-cell.accent {
    background: var(--rb-ink);
    color: rgba(255, 253, 249, 0.8);
    border-color: var(--rb-ink);
}

.rb-mosaic-cell.accent h3 { color: var(--rb-cream); }
.rb-mosaic-cell.accent a { color: #ffb89a; }
.rb-mosaic-cell.accent .rb-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 253, 249, 0.9);
}

/* GST band */
.rb-gst-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    background: linear-gradient(135deg, var(--rb-spice) 0%, #9a3820 100%);
    border-radius: var(--rb-radius-lg);
    color: #fff;
}

.rb-gst-band h3 {
    font-family: var(--rb-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
}

.rb-gst-band p {
    font-size: 16px;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 560px;
}

/* Pricing */
.rb-pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.rb-pricing-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.rb-pricing-row-5 {
    grid-template-columns: repeat(5, 1fr);
}

.rb-price-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--rb-paper-warm);
    color: var(--rb-gold);
    margin-bottom: 10px;
}

.rb-price-card.featured .rb-price-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffb89a;
}

.rb-price-card {
    padding: 36px 32px;
    background: var(--rb-cream);
    border: 1px solid var(--rb-line);
    border-radius: var(--rb-radius-lg);
    position: relative;
}

.rb-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    background: var(--rb-paper-dark);
    border-radius: 0 0 4px 4px;
}

.rb-price-card.featured {
    background: var(--rb-ink);
    color: rgba(255, 253, 249, 0.85);
    border-color: var(--rb-ink);
    transform: scale(1.04);
    box-shadow: var(--rb-shadow);
}

.rb-price-card.featured::before { background: var(--rb-spice); }

.rb-price-card h3 {
    font-family: var(--rb-serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
}

.rb-price-card .amt {
    font-family: var(--rb-serif);
    font-size: 44px;
    color: var(--rb-ink);
    margin: 16px 0;
}

.rb-price-card.featured .amt { color: var(--rb-cream); }

.rb-price-card .amt small {
    font-family: var(--rb-sans);
    font-size: 16px;
    opacity: 0.6;
}

.rb-price-card .desc {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.75;
}

/* Quotes */
.rb-quotes {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.rb-quote {
    padding: 40px;
    background: rgba(255, 253, 249, 0.04);
    border: 1px solid rgba(255, 253, 249, 0.1);
    border-radius: var(--rb-radius-lg);
}

.rb-quote.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rb-quote-mark {
    font-family: var(--rb-serif);
    font-size: 80px;
    line-height: 0.6;
    color: var(--rb-spice);
    opacity: 0.5;
    margin-bottom: 16px;
}

.rb-quote p {
    font-family: var(--rb-serif);
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: var(--rb-cream);
    margin-bottom: 24px;
}

.rb-quote.featured p { font-size: 28px; }

.rb-quote cite {
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 253, 249, 0.9);
}

.rb-quote cite span {
    display: block;
    font-weight: 400;
    opacity: 0.55;
    margin-top: 4px;
}

.rb-quote-stack { display: flex; flex-direction: column; gap: 20px; }

/* CTA band */
.rb-cta-band {
    padding: 80px 0;
    background: var(--rb-paper-warm);
    border-top: 1px solid var(--rb-line);
}

.rb-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    background: var(--rb-ink);
    border-radius: var(--rb-radius-lg);
    color: rgba(255, 253, 249, 0.8);
}

.rb-cta-inner h2 {
    font-family: var(--rb-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: var(--rb-cream);
    margin-bottom: 10px;
}

.rb-cta-inner p { font-size: 16px; }

/* Page banner (inner pages) */
.rb-page-banner {
    position: relative;
    padding: 140px 0 72px;
    background: var(--rb-paper);
}

.rb-page-banner h1 {
    font-family: var(--rb-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--rb-ink);
    max-width: 720px;
    margin-bottom: 16px;
}

.rb-page-banner p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
}

.rb-page-banner-line {
    height: 4px;
    background: linear-gradient(90deg, var(--rb-spice), var(--rb-leaf), transparent);
    margin-top: 48px;
}

/* Footer */
.rb-footer { margin-top: 0; }

.rb-footer-logo {
    display: block;
    height: 38px;
    width: auto;
    margin-bottom: 16px;
}

.rb-footer-top {
    background: linear-gradient(160deg, var(--rb-espresso) 0%, var(--rb-walnut) 100%);
    color: rgba(255, 251, 244, 0.68);
    padding: 72px 0 48px;
}

.rb-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.rb-footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 0;
    max-width: 280px;
}

.rb-footer-mail {
    color: #ffb89a;
    font-weight: 600;
    text-decoration: none;
}

.rb-footer h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rb-cream);
    margin-bottom: 20px;
}

.rb-footer ul { list-style: none; padding: 0; margin: 0; }

.rb-footer li { margin-bottom: 12px; }

.rb-footer a {
    color: rgba(255, 253, 249, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.rb-footer a:hover { color: var(--rb-cream); }

.rb-footer-bottom {
    background: #1A1410;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 253, 249, 0.35);
}

.rb-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* Inner page overrides */
.rb-site .page-banner { display: none; }
.rb-site .cta-section { display: none; }

.rb-site .feat-hub-page { padding-top: 48px; }

/* Auth shell */
.auth-shell.rb-site .auth-main {
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 960px) {
    .rb-hero-grid { grid-template-columns: 1fr; }
    .rb-hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
    .rb-mosaic-cell.span-7,
    .rb-mosaic-cell.span-5,
    .rb-mosaic-cell.span-4,
    .rb-mosaic-cell.span-8 { grid-column: span 12; }
    .rb-pricing-row,
    .rb-pricing-row-4,
    .rb-pricing-row-5 { grid-template-columns: 1fr; }
    .rb-pricing-row-4,
    .rb-pricing-row-5 { grid-template-columns: repeat(2, 1fr); }
    .rb-price-card.featured { transform: none; }
    .rb-quotes { grid-template-columns: 1fr; }
    .rb-quote.featured { grid-row: auto; }
    .rb-footer-grid { grid-template-columns: 1fr 1fr; }
    .rb-gst-band { flex-direction: column; text-align: center; padding: 36px 28px; }
    .rb-cta-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
    .rb-pipeline { flex-direction: column; }
    .rb-pipe-item { border-radius: var(--rb-radius-lg) !important; }
    .rb-pipe-item::after { display: none; }
    .rb-outlet-grid { grid-template-columns: repeat(2, 1fr); padding: 16px; }
    .rb-dual-flow { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .rb-nav-links,
    .rb-nav-actions { display: none; }
    .rb-nav-toggle { display: flex; margin-left: auto; }
    .rb-nav-open .rb-nav {
        flex-wrap: wrap;
        border-radius: 24px;
    }
    .rb-nav-open .rb-nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 3;
        padding: 12px 0;
    }
    .rb-nav-open .rb-nav-actions {
        display: flex;
        width: 100%;
        order: 4;
        justify-content: stretch;
    }
    .rb-nav-open .rb-nav-actions .rb-btn { flex: 1; }
    .rb-nav-phone { display: none; }
    .rb-hero-metrics { gap: 24px; flex-wrap: wrap; }
    .rb-footer-grid { grid-template-columns: 1fr; }
}

/* Legal, contact & support pages */
.rb-legal { padding: 48px 0 72px; }
.rb-legal-doc {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(42, 33, 24, 0.08);
    border-radius: 12px;
    padding: 32px 36px;
    color: var(--rb-ink-soft, #5C5348);
    font-size: 15px;
    line-height: 1.75;
}
.rb-legal-help { text-align: center; margin-top: 24px; font-size: 14px; color: var(--rb-ink-soft, #5C5348); }
.rb-legal-help a { color: var(--rb-spice, #B85C38); }

.rb-contact, .rb-support { padding: 48px 0 72px; }
.rb-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.rb-contact-card {
    background: #fff;
    border: 1px solid rgba(42, 33, 24, 0.08);
    border-radius: 12px;
    padding: 24px;
}
.rb-contact-card--highlight {
    background: linear-gradient(160deg, #FFFBF4 0%, #F7F2E8 100%);
    border-color: rgba(196, 137, 58, 0.2);
}
.rb-contact-card h3 { margin: 0 0 8px; font-size: 18px; color: var(--rb-espresso, #2A2118); }
.rb-contact-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--rb-ink-soft, #5C5348); }
.rb-contact-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--rb-spice, #B85C38);
    text-decoration: none;
}
.rb-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.rb-support-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.rb-support-faq h2 { text-align: center; margin-bottom: 24px; font-size: 24px; }
.rb-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}
.rb-faq-item {
    background: #fff;
    border: 1px solid rgba(42, 33, 24, 0.08);
    border-radius: 12px;
    padding: 20px;
}
.rb-faq-item h4 { margin: 0 0 8px; font-size: 16px; }
.rb-faq-item p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--rb-ink-soft, #5C5348); }
.rb-faq-item a { color: var(--rb-spice, #B85C38); }

.rb-footer-bottom a { color: rgba(255, 251, 244, 0.72); text-decoration: none; }
.rb-footer-bottom a:hover { color: #fff; }
.rb-footer-brand .rb-footer-mail { display: block; margin-top: 6px; }

@media (max-width: 768px) {
    .rb-contact-grid, .rb-support-channels, .rb-faq-grid { grid-template-columns: 1fr; }
    .rb-legal-doc { padding: 24px 20px; }
}
