:root {
    --accent: #b8965d;
    --accent-dark: #8a6e2f;
    --rp-gold: #b8965d;
    --rp-dark: #1a1a1a;
    --bg-light: #ffffff;
    --bg-soft: #fcfaf7;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --sans: 'Plus Jakarta Sans', sans-serif;
    --serif: 'Cormorant Garamond', serif;
    --border: rgba(184, 150, 93, 0.2);
    --glass-light: rgba(255, 255, 255, 0.85);
    --rp-bg: rgba(255, 255, 255, 0.98);
    --page-max: 1400px;
    --nav-height: 80px;
}

.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands,
.rp-nav-global i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.rp-nav-global i, .fa-solid, .fa-brands { font-weight: 900 !important; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--sans);
    line-height: 1.6;
    padding-top: var(--nav-height);
    overflow-x: hidden;
}

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

/* Navigation */
.rp-nav-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10050;
    border-bottom: 1px solid rgba(184, 150, 93, 0.12);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.rp-nav-global.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.rp-nav-global.is-menu-open {
    z-index: 10070;
}

.rp-nav-wrapper {
    max-width: var(--page-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 28px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.rp-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.rp-main-logo {
    height: 48px;
    width: auto;
    max-width: min(168px, 38vw);
    object-fit: contain;
    transition: transform 0.25s ease;
}

.rp-logo-link:hover .rp-main-logo { transform: scale(1.02); }

/* Desktop menu */
.rp-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1.2vw, 20px);
    min-width: 0;
}

.rp-nav-link {
    position: relative;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rp-dark);
    text-decoration: none;
    white-space: nowrap;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s, background-color 0.2s;
}

.rp-nav-dropdown.is-open .rp-nav-dropdown-toggle {
    background-color: #f5f1ea;
    border-radius: 8px;
}

.rp-nav-link::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 4px;
    height: 2px;
    background: var(--rp-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.rp-nav-link:hover,
.rp-nav-link:focus-visible { color: var(--rp-gold); }

.rp-nav-link:hover::after,
.rp-nav-link:focus-visible::after { transform: scaleX(1); }

.rp-nav-link--accent {
    color: var(--rp-gold);
    font-weight: 700;
}

.rp-nav-dropdown { position: relative; }

.rp-nav-dropdown-toggle i {
    font-size: 0.55rem;
    margin-left: 4px;
    transition: transform 0.25s;
}

.rp-nav-dropdown.is-open .rp-nav-dropdown-toggle i { transform: rotate(180deg); }

.rp-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid rgba(184, 150, 93, 0.28);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 10060;
    isolation: isolate;
}

.rp-nav-dropdown.is-open .rp-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.rp-dropdown-panel a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rp-dark);
    text-decoration: none;
    background-color: #ffffff;
    transition: background 0.2s, color 0.2s;
}

.rp-dropdown-panel a:hover,
.rp-dropdown-panel a:focus-visible {
    background-color: #f5f1ea;
    color: var(--rp-gold);
}

/* Right actions */
.rp-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.rp-offer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--rp-dark);
    background: rgba(184, 150, 93, 0.08);
    border: 1px solid rgba(184, 150, 93, 0.22);
    white-space: nowrap;
}

.rp-offer-badge strong { color: var(--rp-gold); }

.rp-offer-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rp-gold);
    flex-shrink: 0;
    animation: rp-pulse 1.5s infinite;
}

@keyframes rp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.25); }
}

.rp-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(184, 150, 93, 0.25);
    background: #fff;
    color: var(--rp-dark);
    text-decoration: none;
    transition: 0.25s;
    flex-shrink: 0;
}

.rp-icon-btn:hover {
    border-color: var(--rp-gold);
    color: var(--rp-gold);
    transform: translateY(-1px);
}

.rp-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s;
    flex-shrink: 0;
}

.rp-nav-cta i { font-size: 1rem; color: #25d366; }

.rp-nav-cta:hover {
    background: linear-gradient(135deg, #8a6e2f, #b8965d);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 93, 0.35);
}

.rp-nav-cta:hover i { color: #111; }

/* Burger */
.rp-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(184, 150, 93, 0.25);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.25s;
}

.rp-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--rp-dark);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.rp-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rp-burger.is-active span:nth-child(2) { opacity: 0; }
.rp-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.rp-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10055;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.rp-drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.rp-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 100vw);
    height: 100%;
    max-height: 100dvh;
    background-color: #ffffff;
    z-index: 10060;
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    isolation: isolate;
}

.rp-mobile-drawer.is-open { transform: translateX(0); }

.rp-drawer-body {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 8px 16px 12px;
}

.rp-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    background-color: #ffffff;
}

.rp-drawer-logo { height: 40px; width: auto; }

.rp-close-drawer {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(184, 150, 93, 0.1);
    color: var(--rp-gold);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
}

.rp-close-drawer:hover { background: rgba(184, 150, 93, 0.2); }

.rp-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rp-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--rp-dark);
    font-weight: 600;
    font-size: 1rem;
    background-color: #f8f6f2;
    border: 1px solid #ece8e0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.rp-drawer-nav a:hover,
.rp-drawer-nav a:focus-visible {
    background-color: #f0ebe3;
    border-color: rgba(184, 150, 93, 0.35);
    color: var(--rp-gold);
}

.rp-drawer-nav i {
    width: 20px;
    text-align: center;
    color: var(--rp-gold);
    font-size: 0.9rem;
}

.rp-drawer-accent {
    background-color: #f5f1ea !important;
    border-color: rgba(184, 150, 93, 0.4) !important;
    color: var(--rp-gold) !important;
    font-weight: 700 !important;
}

.rp-drawer-legal-collapse {
    margin-top: 12px;
    border: 1px solid #ece8e0;
    border-radius: 12px;
    background: #faf8f5;
    overflow: hidden;
}

.rp-drawer-legal-collapse summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.rp-drawer-legal-collapse summary::-webkit-details-marker { display: none; }

.rp-drawer-legal-collapse summary::after {
    content: "+";
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--rp-gold);
}

.rp-drawer-legal-collapse[open] summary::after { content: "−"; }

.rp-drawer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 8px 10px;
}

.rp-drawer-legal-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ece8e0;
    min-height: 44px;
    line-height: 1.35;
    display: flex;
    align-items: center;
}

.rp-drawer-legal-links a:hover,
.rp-drawer-legal-links a:focus-visible {
    background-color: #f8f6f2;
    color: var(--rp-gold);
}

/* Legacy flat legal block */
.rp-drawer-legal {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ece8e0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rp-drawer-legal-title {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 4px;
}

.rp-drawer-legal a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #ece8e0;
}

.rp-drawer-legal a:hover {
    background-color: #f8f6f2;
    color: var(--rp-gold);
}

.rp-drawer-footer {
    flex-shrink: 0;
    margin-top: 0;
    padding: 14px 16px max(18px, env(safe-area-inset-bottom));
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

/* Legacy drawer markup on older subpages */
.rp-drawer-links { list-style: none; padding: 0; margin: 0; }
.rp-drawer-links li { margin-bottom: 8px; }
.rp-drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--rp-dark);
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #f8f6f2;
    border: 1px solid #ece8e0;
}

.rp-drawer-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8a6e2f, #b8965d);
    color: #111;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.25s;
}

.rp-drawer-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184, 150, 93, 0.3); }

.rp-drawer-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(184, 150, 93, 0.35);
    color: var(--rp-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

/* SEO: breadcrumbs & local block */
.rp-breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 5% 0;
    font-size: 0.78rem;
    color: #888;
}
.rp-breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
}
.rp-breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.rp-breadcrumbs li + li::before {
    content: "/";
    color: #ccc;
    margin-right: 2px;
}
.rp-breadcrumbs a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}
.rp-breadcrumbs a:hover { color: var(--rp-gold); }
.rp-breadcrumbs [aria-current="page"] { color: var(--rp-dark); }

.rp-seo-local {
    max-width: 1100px;
    margin: 48px auto;
    padding: 36px 5%;
    background: #faf8f5;
    border: 1px solid rgba(184, 150, 93, 0.2);
    border-radius: 16px;
}
.rp-seo-local h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
    color: var(--rp-dark);
}
.rp-seo-local p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
}
.rp-seo-local-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rp-seo-local-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(184, 150, 93, 0.3);
    color: var(--rp-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.rp-seo-local-links a:hover {
    border-color: var(--rp-gold);
    color: var(--rp-gold);
}

.rp-home-faq {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 5%;
}
.rp-home-faq h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    margin-bottom: 28px;
    color: var(--rp-dark);
}
.rp-home-faq .rp-faq-item {
    border: 1px solid #ece8e0;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.rp-home-faq .rp-faq-q {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--rp-dark);
}
.rp-home-faq .rp-faq-a {
    display: none;
    padding: 0 18px 16px;
    color: #555;
    line-height: 1.7;
    font-size: 0.9rem;
}
.rp-home-faq .rp-faq-item.open .rp-faq-a { display: block; }
.rp-home-faq .rp-faq-item.open .rp-faq-q i { transform: rotate(180deg); }

/* Legal / policy pages */
.rp-legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 5% 80px;
}
.rp-legal-content h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 32px 0 12px;
    color: var(--rp-dark);
}
.rp-legal-content h2:first-child { margin-top: 0; }
.rp-legal-content p, .rp-legal-content li {
    color: #444;
    margin-bottom: 12px;
    line-height: 1.75;
}
.rp-legal-content ul { padding-left: 1.25rem; margin-bottom: 16px; }
.rp-legal-content a { color: var(--rp-gold); }
.rp-legal-updated {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 24px;
}

/* Page layout (inner pages) */
.rp-page-hero {
    padding: 60px 5% 50px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-light) 100%);
    border-bottom: 1px solid var(--border);
}
.rp-page-hero .rp-container { max-width: 900px; margin: 0 auto; }
.rp-page-hero .rp-kicker {
    color: var(--accent); font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.rp-page-hero h1 {
    font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15; margin-bottom: 16px;
}
.rp-page-hero .rp-lead { color: var(--text-muted); font-size: 1.05rem; max-width: 720px; }
.rp-content-section { padding: 50px 5%; max-width: var(--page-max); margin: 0 auto; }
.rp-content-section h2 {
    font-family: var(--serif); font-size: 1.8rem; margin: 40px 0 16px;
}
.rp-content-section h2:first-child { margin-top: 0; }
.rp-content-section h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.rp-content-section p, .rp-content-section li { color: #444; margin-bottom: 12px; }
.rp-content-section ul { padding-left: 1.25rem; margin-bottom: 20px; }

/* Primary CTA */
.rp-primary-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--rp-dark); color: #fff; padding: 16px 32px;
    border-radius: 50px; text-decoration: none; font-weight: 700;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s; border: none; cursor: pointer;
}
.rp-primary-cta:hover { background: var(--rp-gold); transform: translateY(-2px); }
.rp-secondary-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.rp-secondary-links a {
    font-size: 0.85rem; color: var(--text-muted); text-decoration: none;
    border-bottom: 1px solid var(--border); padding-bottom: 2px;
}
.rp-secondary-links a:hover { color: var(--accent); border-color: var(--accent); }

/* Footer */
.premium-footer {
    background: #0a0a0a; color: #d1d1d1;
    padding: 80px 5% 30px; border-top: 3px solid var(--rp-gold);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px; max-width: var(--page-max); margin: 0 auto 40px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo-img { height: 50px; filter: brightness(0) invert(1); }
.gold-gradient {
    font-family: var(--serif); font-size: 1.4rem;
    background: linear-gradient(135deg, #b8965d, #ffdfa4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: #888; margin-bottom: 25px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-item {
    font-size: 0.65rem; padding: 5px 12px;
    background: rgba(184, 150, 93, 0.1); border: 1px solid rgba(184, 150, 93, 0.3);
    color: var(--rp-gold); border-radius: 4px; font-weight: 700;
    display: flex; align-items: center; gap: 5px;
}
.footer-heading {
    color: #fff; font-size: 0.9rem; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 30px; position: relative;
}
.footer-heading::after {
    content: ''; position: absolute; left: 0; bottom: -10px;
    width: 30px; height: 2px; background: var(--rp-gold);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    text-decoration: none; color: #888; font-size: 0.9rem;
    transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--rp-gold); transform: translateX(5px); }
.footer-links i { font-size: 0.7rem; }
.contact-details { list-style: none; padding: 0; margin-bottom: 25px; }
.contact-details li { display: flex; gap: 15px; margin-bottom: 18px; font-size: 0.9rem; line-height: 1.5; }
.gold { color: var(--rp-gold); margin-top: 4px; }
.footer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-btn {
    padding: 12px 5px; text-align: center; border-radius: 5px;
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    text-decoration: none; transition: 0.3s;
}
.f-btn-wa { background: #25D366; color: #fff; }
.f-btn-outline { border: 1px solid var(--rp-gold); color: var(--rp-gold); }
.f-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; font-size: 0.8rem; color: #555;
    max-width: var(--page-max); margin: 0 auto;
    border-top: 1px solid #1a1a1a;
}
.footer-bottom a { color: #666; text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--rp-gold); }
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
}
.footer-legal-links a { margin-left: 0; font-size: 0.78rem; }

/* Responsive */
@media (max-width: 1100px) {
    .rp-nav-menu { display: none; }
    .rp-burger { display: flex; }
    .rp-offer-badge { display: none; }
    .rp-nav-wrapper {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }
    .rp-nav-global {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #ffffff;
    }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    :root { --nav-height: 64px; }
    .rp-cta-text { display: none; }
    .rp-nav-cta {
        width: 44px;
        height: 44px;
        padding: 0;
    }
    .rp-nav-cta i { font-size: 1.2rem; }
    .rp-icon-btn { display: none; }
    .rp-main-logo { height: 40px; max-width: 130px; }
    .rp-nav-actions { gap: 8px; }
    .rp-burger { width: 44px; height: 44px; }
    .rp-mobile-drawer { width: 100%; max-width: 100%; }
    .rp-drawer-nav a { font-size: 0.95rem; }
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-actions { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
    .rp-seo-local { margin: 32px 16px; padding: 24px 18px; }
    .rp-home-faq { padding: 0 16px 48px; }
    .rp-breadcrumbs { padding: 10px 16px 0; font-size: 0.72rem; }
}

@media (min-width: 1920px) {
    .rp-nav-wrapper, .footer-grid, .rp-content-section { max-width: 1600px; }
}

@media (max-width: 360px) {
    .rp-page-hero { padding: 40px 4% 30px; }
    .rp-drawer-btn { font-size: 0.72rem; padding: 13px; }
}
