/* ============================================================
   RADO Parkett Hub — rado-parkett-hub.css
   Ported from the Salient child theme into rado-theme.
   Fonts are already declared sitewide in main.css (same
   family names), so no @font-face here.
   ============================================================ */

/* ----- Design Tokens ----- */
:root {
    --rph-sage: #7D9B76;
    --rph-sage-light: #A3BF9C;
    --rph-sage-pale: #E8F0E6;
    --rph-sage-dark: #5E7A57;
    --rph-amber: #C8963E;
    --rph-amber-light: #D4A94E;
    --rph-amber-pale: #FDF6EB;
    --rph-cream: #FAFAF7;
    --rph-warm-gray: #F5F2ED;
    --rph-dark: #1A1917;
    --rph-dark-muted: #3A3935;
    --rph-text: #2C2B28;
    --rph-text-light: #6B6862;
    --rph-text-lighter: #9A958D;
    --rph-border: #E8E5DF;
    --rph-white: #FFFFFF;
    --rph-serif: 'Cormorant Garamond', Georgia, serif;
    --rph-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --rph-max-w: 1200px;
    --rph-pad: 100px;
}

/* ----- Scope: only inside .rph ----- */
.rph { font-family: var(--rph-sans); color: var(--rph-text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
.rph img { max-width: 100%; height: auto; display: block; }
.rph a { color: inherit; text-decoration: none; }

/* ----- Container ----- */
.rph-container { max-width: var(--rph-max-w); margin: 0 auto; padding: 0 32px; }

/* ----- Reusable ----- */
.rph-label { font-family: var(--rph-sans); font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--rph-sage); margin-bottom: 12px; }
.rph-title { font-family: var(--rph-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--rph-dark); line-height: 1.2; margin-bottom: 20px; }
.rph-title em { font-family: var(--rph-serif); font-style: italic; color: var(--rph-sage); }
.rph-text { font-size: 15px; font-weight: 300; color: var(--rph-text-light); line-height: 1.85; max-width: 580px; }
.rph-btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--rph-sans); font-size: 13px; font-weight: 500; padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer; transition: all .35s cubic-bezier(.25,.8,.25,1); letter-spacing: .8px; text-transform: uppercase; text-decoration: none; }
.rph-btn--primary { background: var(--rph-amber); color: #fff!important; box-shadow: 0 4px 20px rgba(200,150,62,.25); }
.rph-btn--primary:hover { background: var(--rph-amber-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,150,62,.4); color: #fff; }
.rph-btn--secondary { background: rgba(255,255,255,.08); color: #fff!important; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.rph-btn--secondary:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); color: #fff; }
.rph-btn--outline { background: transparent; color: var(--rph-white)!important; border: 1.5px solid var(--rph-sage); background: var(--rph-sage); }
.rph-btn--outline:hover { background: var(--rph-sage-dark); color: #fff; }
.rph-btn--dark { background: var(--rph-dark); color: #fff!important; }
.rph-btn--dark:hover { background: var(--rph-sage); transform: translateY(-2px); color: #fff; }

/* ==================== HERO ==================== */
.rph-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; }
.rph-hero__bg { position: absolute; inset: 0; }
.rph-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.rph-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,25,23,.85) 0%, rgba(26,25,23,.4) 40%, rgba(26,25,23,.1) 70%, transparent 100%); }
.rph-hero__content { position: relative; z-index: 2; padding: 0 0 80px; width: 100%; }
.rph-hero__badge { display: none; align-items: center; gap: 8px; background: rgba(125,155,118,.15); backdrop-filter: blur(8px); border: 1px solid rgba(125,155,118,.3); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px; }
.rph-hero__badge span { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--rph-sage-light); }
.rph-hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rph-sage-light); }
.rph-hero h1 { font-family: var(--rph-serif); font-size: clamp(38px, 6vw, 72px); font-weight: 300; color: #fff; line-height: 1.12; margin-bottom: 16px; max-width: 720px; }
.rph-hero h1 em { font-family: var(--rph-serif); font-style: italic; color: var(--rph-sage-light); font-weight: 300; }
.rph-hero__sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.rph-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.rph-hero__ref { margin-top: 12px; }
.rph-hero__ref a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.45); letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
.rph-hero__ref a:hover { color: rgba(255,255,255,.75); }

/* ==================== USP BAR ==================== */
.rph-usp { background: var(--rph-white); border-bottom: 1px solid var(--rph-border); padding: 28px 0; }
.rph-usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.rph-usp__item { display: flex; align-items: center; gap: 14px; }
.rph-usp__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--rph-sage-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--rph-sage); }
.rph-usp__icon svg { width: 22px; height: 22px; }
.rph-usp__item h4 { font-size: 13px; font-weight: 500; color: var(--rph-dark); margin: 0 0 1px; }
.rph-usp__item p { font-size: 11px; color: var(--rph-text-lighter); font-weight: 300; margin: 0; }

/* ==================== INTRO (2-col) ==================== */
.rph-intro { padding: var(--rph-pad) 0; }
.rph-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rph-intro__image { position: relative; border-radius: 12px; overflow: hidden; }
.rph-intro__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }
.rph-intro__accent { position: absolute; bottom: -16px; right: -16px; width: 120px; height: 120px; background: var(--rph-sage-pale); border-radius: 12px; z-index: -1; }
.rph-intro__list { list-style: none; margin-top: 28px; padding: 0; }
.rph-intro__list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15px; color: var(--rph-text); }
.rph-intro__list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--rph-sage); margin-top: 8px; flex-shrink: 0; }

/* ==================== PRODUCTS (WooCommerce) ==================== */
.rph-products { padding: var(--rph-pad) 0; background: var(--rph-warm-gray); }
.rph-products__header { text-align: center; margin-bottom: 32px; }
.rph-products__header .rph-text { max-width: 560px; margin: 0 auto; text-align: center; }

/* Filter Pills */
.rph-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.rph-filter-pill { font-family: var(--rph-sans); font-size: 12px; font-weight: 500; padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--rph-border); background: var(--rph-white); color: var(--rph-text-light); cursor: pointer; transition: all .2s; }
.rph-filter-pill:hover { border-color: var(--rph-sage); color: var(--rph-sage-dark); }
.rph-filter-pill.active { background: var(--rph-sage); border-color: var(--rph-sage); color: #fff; }

/* Product Grid */
.rph-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rph-product-card { background: var(--rph-white); border-radius: 10px; overflow: hidden; transition: all .3s; cursor: pointer; border: 1px solid var(--rph-border); text-decoration: none; display: block; }
.rph-product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: var(--rph-sage-light); }
.rph-product-card__img { aspect-ratio: 3/4; overflow: hidden; }
.rph-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rph-product-card:hover .rph-product-card__img img { transform: scale(1.05); }
.rph-product-card__info { padding: 16px 18px; }
.rph-product-card__name { font-size: 14px; font-weight: 600; color: var(--rph-dark); margin: 0 0 4px; }
.rph-product-card__price { font-size: 14px; color: var(--rph-amber); font-weight: 600; margin: 0 0 10px; }
.rph-product-card__price del { color: var(--rph-text-lighter); font-weight: 400; }
.rph-product-card__muster { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--rph-sage-pale); color: var(--rph-sage-dark); font-size: 12px; font-weight: 600; border-radius: 100px; transition: all .25s; }
.rph-product-card__muster:hover { background: var(--rph-sage); color: #fff; }
.rph-products__cta { text-align: center; margin-top: 32px; }

/* WooCommerce override: hide defaults */
.rph-product-grid .woocommerce-loop-product__title,
.rph-product-grid .price,
.rph-product-grid .button,
.rph-product-grid .star-rating,
.rph-product-grid .onsale { display: none !important; }

/* ==================== CONTENT SECTIONS (Fischgrät, Landhausdiele, Warum) ==================== */
.rph-content { padding: var(--rph-pad) 0; }
.rph-content--alt { background: var(--rph-warm-gray); }
.rph-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rph-content__grid--reverse { direction: rtl; }
.rph-content__grid--reverse > * { direction: ltr; }
.rph-content__image { border-radius: 12px; overflow: hidden; }
.rph-content__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }
.rph-content__body .rph-title { margin-bottom: 16px; }

/* Feature cards grid */
.rph-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.rph-feature { padding: 20px; background: var(--rph-cream); border-radius: 10px; border: 1px solid var(--rph-border); }
.rph-feature h4 { font-family: var(--rph-serif); font-size: 17px; font-weight: 400; color: var(--rph-dark); margin: 0 0 6px; }
.rph-feature p { font-size: 13px; color: var(--rph-text-light); line-height: 1.6; margin: 0; }

/* ==================== MUSTERPAKETE ==================== */
.rph-muster { padding: var(--rph-pad) 0; background: var(--rph-amber-pale); }
.rph-muster__header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.rph-muster__header .rph-title em { color: var(--rph-amber); }
.rph-paket-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rph-paket { background: var(--rph-white); border-radius: 12px; padding: 28px 24px; border: 1px solid var(--rph-border); display: flex; flex-direction: column; }
.rph-paket--featured { border-color: var(--rph-amber); box-shadow: 0 4px 20px rgba(200,150,62,.12); }
.rph-paket__badge { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rph-text-lighter); margin-bottom: 8px; }
.rph-paket--featured .rph-paket__badge { color: var(--rph-amber); }
.rph-paket h4 { font-family: var(--rph-serif); font-size: 20px; font-weight: 400; color: var(--rph-dark); margin: 0 0 8px; }
.rph-paket__desc { font-size: 13px; color: var(--rph-text-light); font-weight: 300; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.rph-paket__price { font-family: var(--rph-serif); font-size: 28px; font-weight: 400; color: var(--rph-dark); margin: 0 0 4px; }
.rph-paket__note { font-size: 11px; color: var(--rph-sage-dark); font-weight: 500; margin: 0 0 16px; }

/* ==================== FAQ ==================== */
.rph-faq { padding: var(--rph-pad) 0; background: var(--rph-amber-pale); }
.rph-faq__title { font-family: var(--rph-serif); font-size: 32px; font-weight: 400; color: var(--rph-dark); margin-bottom: 32px; }
.rph-faq__title em { font-family: var(--rph-serif); color: var(--rph-amber); font-style: italic; }
.rph-faq__list { max-width: 800px; }
.rph-faq__item { background: var(--rph-white); border: 1px solid var(--rph-border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.rph-faq__q { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--rph-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin: 0; }
.rph-faq__q::after { content: '+'; font-size: 20px; color: var(--rph-text-lighter); font-weight: 300; transition: transform .2s; }
.rph-faq__item.open .rph-faq__q::after { content: '−'; }
.rph-faq__a { padding: 0 24px 20px; font-size: 14px; color: var(--rph-text-light); font-weight: 300; line-height: 1.7; display: none; }
.rph-faq__item.open .rph-faq__a { display: block; }

/* ==================== SHOWROOM (dark) ==================== */
.rph-showroom { padding: var(--rph-pad) 0; background: var(--rph-dark); }
.rph-showroom .rph-label { color: var(--rph-sage-light); }
.rph-showroom .rph-title { color: #fff; }
.rph-showroom .rph-text { color: rgba(255,255,255,.55); }
.rph-showroom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.rph-showroom__img { border-radius: 10px; overflow: hidden; }
.rph-showroom__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* ==================== PROCESS ==================== */
.rph-process { padding: var(--rph-pad) 0; background: var(--rph-sage-pale); }
.rph-process__header { text-align: center; margin-bottom: 48px; }
.rph-process__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.rph-step { text-align: center; }
.rph-step__num { width: 52px; height: 52px; border-radius: 50%; background: transparent; border: 1.5px solid var(--rph-sage); color: var(--rph-sage-dark); font-family: var(--rph-serif); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.rph-step h4 { font-family: var(--rph-serif); font-size: 22px; font-weight: 400; color: var(--rph-dark); margin: 0 0 8px; }
.rph-step p { font-size: 14px; font-weight: 300; color: var(--rph-text-light); max-width: 280px; margin: 0 auto; }

/* ==================== CTA / CONTACT ==================== */
.rph-cta { padding: var(--rph-pad) 0; }
.rph-cta__card { background: var(--rph-white); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rph-border); }
.rph-cta__image img { width: 100%; height: 100%; object-fit: cover; }
.rph-cta__body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.rph-cta__address { margin-top: 24px; font-size: 14px; color: var(--rph-text-light); line-height: 2; }
.rph-cta__address strong { color: var(--rph-dark); font-weight: 600; }
.rph-cta__hours { margin-top: 16px; font-size: 13px; color: var(--rph-text-lighter); line-height: 1.8; }
.rph-cta__body .rph-btn { margin-top: 28px; align-self: flex-start; }

/* Calendly */
.rph-calendly { margin-top: 48px; scroll-margin-top: 88px; }
.rph-calendly .calendly-inline-widget { border-radius: 12px; overflow: hidden; border: 1px solid var(--rph-border); background: var(--rph-white); }

/* ==================== REFERENZEN ==================== */
.rph-ref { padding: var(--rph-pad) 0; background: var(--rph-sage-pale); }
.rph-ref .rph-label { color: var(--rph-sage-dark); }
.rph-ref__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.rph-ref__card { border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 4/5; }
.rph-ref__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rph-ref__card:hover img { transform: scale(1.05); }
.rph-ref__card figcaption { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,25,23,.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 20px; }
.rph-ref__card figcaption span { font-family: var(--rph-serif); font-size: 18px; font-weight: 400; color: #fff; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    :root { --rph-pad: 72px; }
    .rph-intro__grid, .rph-content__grid, .rph-cta__card { grid-template-columns: 1fr; }
    .rph-product-grid { grid-template-columns: repeat(2, 1fr); }
    .rph-usp__grid { grid-template-columns: repeat(2, 1fr); }
    .rph-paket-grid { grid-template-columns: repeat(2, 1fr); }
    .rph-intro__accent { width: 80px; height: 80px; bottom: -10px; right: -10px; }
    .rph-cta__body { padding: 40px 32px; }
}
@media (max-width: 767px) {
    :root { --rph-pad: 56px; }
    .rph-container { padding: 0 20px; }
    .rph-hero h1 { font-size: 32px; }
    .rph-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .rph-process__steps { grid-template-columns: 1fr; gap: 32px; }
    .rph-usp__grid { grid-template-columns: 1fr; }
    .rph-showroom__grid { grid-template-columns: 1fr; }
    .rph-features { grid-template-columns: 1fr; }
    .rph-ref__grid { grid-template-columns: 1fr; }
    .rph-paket-grid { grid-template-columns: 1fr; }
    .rph-intro__accent { display: none; }
    .rph-content__grid--reverse { direction: ltr; }
    .rph-hero__actions { flex-direction: column; }
}

/* Fix: FAQ + Produkt-Titel in Jakarta Sans */
.rph-faq__q { font-family: var(--rph-sans); }
.rph-product-card__name { font-family: var(--rph-sans); }
.rph-product-card__price { font-family: var(--rph-sans); }

/* Fix: USP SVG Icons sichtbar */
.rph-usp__icon svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
