/* Lucia Steinbacher — Wildnis-Retreat im Nationalpark Gesäuse
   Earthy & Natural palette · Cormorant Garamond + Inter */

:root {
    --background:       hsl(39 38% 94%);
    --foreground:       hsl(95 18% 14%);
    --card:             hsl(39 38% 97%);
    --card-foreground:  hsl(95 18% 14%);
    --primary:          hsl(95 22% 24%);
    --primary-foreground: hsl(39 38% 96%);
    --secondary:        hsl(36 24% 86%);
    --secondary-foreground: hsl(95 22% 18%);
    --muted:            hsl(36 18% 88%);
    --muted-foreground: hsl(95 10% 35%);
    --accent:           hsl(18 42% 48%);
    --accent-foreground: hsl(39 38% 96%);
    --border:           hsl(36 18% 80%);
    --ring:             hsl(95 22% 30%);
    --radius:           0.25rem;
    --hero-overlay:     linear-gradient(180deg, hsl(95 22% 10% / 0.35) 0%, hsl(95 22% 8% / 0.75) 100%);

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
}

/* --- Lenis smooth scroll hooks ---------------------------------------- */
html.has-lenis,
html.has-lenis body { height: auto; overscroll-behavior: none; }
html.has-lenis.lenis-smooth { scroll-behavior: auto; }
html.has-lenis.lenis-stopped { overflow: hidden; }
html.has-lenis.lenis-scrolling iframe { pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
    html.has-lenis { scroll-behavior: auto; }
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:root { color-scheme: light; }

.font-serif { font-family: var(--font-serif); font-weight: 500; }
.font-sans  { font-family: var(--font-sans); }
.italic     { font-style: italic; }
.text-balance { text-wrap: balance; }

.container-r { width: 100%; max-width: 72rem; margin-inline: auto; padding-inline: 1.5rem; }
.container-3 { max-width: 48rem; }
.container-4 { max-width: 56rem; }
.container-5 { max-width: 64rem; }
.section-pad { padding-block: 4rem; }
@media (min-width: 768px) { .section-pad { padding-block: 7rem; } }
.bg-bg   { background: var(--background); }
.bg-sec  { background: hsl(36 24% 86% / 0.4); }
.bg-prim { background: var(--primary); color: var(--primary-foreground); }
.bg-card { background: var(--card); }

/* Site header */
.r-header { position: fixed; inset-inline: 0; top: 0; z-index: 50; transition: all 0.3s ease; background: transparent; }
.r-header.is-scrolled, .r-header.is-open {
    background: hsla(39, 38%, 94%, 0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(36 18% 80% / 0.6);
}
.r-header__inner {
    max-width: 72rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    padding: 0 1.25rem; height: 4rem;
}
@media (min-width: 768px) { .r-header__inner { height: 5rem; padding: 0 1.5rem; } }
.r-header__brand { font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0.02em; color: var(--primary-foreground); transition: color 0.3s; }
@media (min-width: 768px) { .r-header__brand { font-size: 1.125rem; } }
.r-header.is-scrolled .r-header__brand, .r-header.is-open .r-header__brand { color: var(--foreground); }
.r-header__nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .r-header__nav { display: flex; } }
.r-header__nav a {
    font-family: var(--font-sans); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: hsl(39 38% 96% / 0.8); transition: color 0.2s;
}
.r-header__nav a:hover { color: var(--primary-foreground); }
.r-header.is-scrolled .r-header__nav a { color: var(--muted-foreground); }
.r-header.is-scrolled .r-header__nav a:hover { color: var(--foreground); }
.r-header__nav a.r-header__switch { color: var(--primary-foreground); }
.r-header.is-scrolled .r-header__nav a.r-header__switch { color: var(--foreground); }
.r-header__nav a.r-header__switch:hover { color: var(--accent); }

.r-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: var(--accent-foreground);
    font-family: var(--font-sans); font-weight: 500; border: 0; padding: 0 1.25rem;
    height: 2.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
    border-radius: var(--radius); cursor: pointer; transition: background 0.2s;
    text-decoration: none;
}
.r-btn:hover { background: hsl(18 42% 48% / 0.9); }
.r-btn--lg { height: 3.5rem; padding: 0 2rem; font-size: 1rem; letter-spacing: normal; text-transform: none; font-weight: 500; }
.r-btn--block { width: 100%; }
@media (min-width: 640px) { .r-btn--block { width: auto; } }

.r-burger {
    display: inline-flex; align-items: center; justify-content: center;
    height: 2.5rem; width: 2.5rem; border: 0; background: transparent;
    color: var(--primary-foreground); border-radius: 0.375rem;
}
.r-header.is-scrolled .r-burger, .r-header.is-open .r-burger { color: var(--foreground); }
@media (min-width: 768px) { .r-burger { display: none; } }
.r-mobile { border-top: 1px solid hsl(36 18% 80% / 0.6); background: var(--background); display: none; }
.r-header.is-open .r-mobile { display: block; }
@media (min-width: 768px) { .r-mobile { display: none !important; } }
.r-mobile__nav { max-width: 72rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 1.25rem; }
.r-mobile__nav a { padding: 0.75rem 0.5rem; font-family: var(--font-sans); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); border-radius: 0.375rem; }
.r-mobile__nav a:hover { background: var(--secondary); color: var(--foreground); }
.r-mobile__nav a.r-mobile__switch { color: var(--foreground); }
.r-mobile__nav .r-btn { margin-top: 0.5rem; height: 3rem; font-size: 0.875rem; }

/* Hero */
.r-hero { position: relative; width: 100%; min-height: 100svh; overflow: hidden; }
.r-hero--short { min-height: 80svh; }
.r-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.r-hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.r-hero__inner {
    position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; min-height: inherit;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 6rem 1.5rem 3rem; color: var(--primary-foreground);
}
@media (min-width: 768px) { .r-hero__inner { padding: 8rem 1.5rem 6rem; } }
.r-hero__kicker { margin: 0 0 1.25rem; font-family: var(--font-sans); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(39 38% 96% / 0.8); }
@media (min-width: 768px) { .r-hero__kicker { font-size: 0.875rem; letter-spacing: 0.3em; margin-bottom: 1.5rem; } }
.r-hero__h1 { font-family: var(--font-serif); font-weight: 500; line-height: 1.05; color: var(--primary-foreground); text-wrap: balance; font-size: clamp(2.5rem, 6vw, 5.5rem); margin: 0; }
.r-hero__h1 span { font-style: italic; color: hsl(39 38% 96% / 0.95); }
.r-hero__sub { margin: 1.5rem 0 0; max-width: 40rem; font-size: 1rem; line-height: 1.6; color: hsl(39 38% 96% / 0.9); }
@media (min-width: 768px) { .r-hero__sub { font-size: 1.25rem; margin-top: 2rem; } }
.r-hero__actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .r-hero__actions { flex-direction: row; align-items: center; } }
@media (min-width: 768px) { .r-hero__actions { margin-top: 2.5rem; } }
.r-hero__secondary { text-align: center; font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: hsl(39 38% 96% / 0.8); text-underline-offset: 8px; }
.r-hero__secondary:hover { text-decoration: underline; }
@media (min-width: 640px) { .r-hero__secondary { font-size: 0.875rem; } }
.r-hero__facts { margin-top: 2.5rem; display: flex; flex-wrap: wrap; column-gap: 1.5rem; row-gap: 0.5rem; font-family: var(--font-sans); font-size: 0.75rem; color: hsl(39 38% 96% / 0.8); }
@media (min-width: 768px) { .r-hero__facts { font-size: 0.875rem; column-gap: 2rem; row-gap: 0.75rem; margin-top: 3rem; } }
.r-hero__fact { display: inline-flex; align-items: center; gap: 0.5rem; }
.r-hero__fact svg { width: 1rem; height: 1rem; }

/* TrustBar */
.r-trust { border-block: 1px solid var(--border); background: hsl(36 24% 86% / 0.6); }
.r-trust__inner {
    max-width: 72rem; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    column-gap: 1.25rem; row-gap: 0.5rem; padding: 1.25rem 1.5rem;
    font-family: var(--font-sans); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground);
}
@media (min-width: 768px) { .r-trust__inner { column-gap: 2.5rem; row-gap: 0.75rem; padding: 1.5rem; font-size: 0.75rem; letter-spacing: 0.2em; } }
.r-trust__inner span { display: inline-flex; align-items: center; gap: 0.5rem; text-align: center; }
.r-trust__dot { display: none; height: 4px; width: 4px; border-radius: 50%; background: hsl(95 10% 35% / 0.4); }
@media (min-width: 768px) { .r-trust__dot { display: inline-block; } }

/* Section primitives */
.r-kicker { margin: 0 0 1rem; font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); }
.r-h2 { font-family: var(--font-serif); font-weight: 500; font-size: 1.875rem; line-height: 1.15; text-wrap: balance; margin: 0; }
@media (min-width: 768px) { .r-h2 { font-size: 3rem; } }
.r-h2--xl { font-size: 1.875rem; }
@media (min-width: 768px) { .r-h2--xl { font-size: 3.5rem; } }
.r-lead { margin-top: 1.25rem; max-width: 42rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); white-space: pre-line; }
@media (min-width: 768px) { .r-lead { font-size: 1.125rem; margin-top: 1.5rem; } }

/* Problem */
.r-problem ul { margin-top: 2.5rem; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .r-problem ul { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; } }
.r-problem li { border-left: 2px solid hsl(18 42% 48% / 0.6); padding-left: 1.25rem; font-family: var(--font-serif); font-size: 1.125rem; font-style: italic; line-height: 1.6; color: hsl(95 18% 14% / 0.9); }
@media (min-width: 768px) { .r-problem li { font-size: 1.25rem; } }

/* Consequences */
.r-conseq { position: relative; overflow: hidden; }
.r-conseq__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.r-conseq__overlay { position: absolute; inset: 0; background: hsl(95 18% 14% / 0.75); }
.r-conseq__inner { position: relative; max-width: 48rem; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; color: var(--primary-foreground); }
@media (min-width: 768px) { .r-conseq__inner { padding: 9rem 1.5rem; } }
.r-conseq__kicker { color: hsl(39 38% 96% / 0.7); margin-bottom: 1rem; }
.r-conseq__lines p { margin-top: 1rem; line-height: 1.6; color: hsl(39 38% 96% / 0.85); }
@media (min-width: 768px) { .r-conseq__lines p { font-size: 1.125rem; } }
.r-conseq__stanza { margin-top: 2rem; font-family: var(--font-serif); font-size: 1.125rem; font-style: italic; color: hsl(39 38% 96% / 0.9); }
.r-conseq__stanza p { margin: 0.4rem 0; }
@media (min-width: 768px) { .r-conseq__stanza { font-size: 1.25rem; } }
.r-conseq__closing { margin-top: 2rem; font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; }
@media (min-width: 768px) { .r-conseq__closing { font-size: 1.5rem; } }

/* Solution */
.r-solution__pillars { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .r-solution__pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 4rem; } }
.r-pillar { border-top: 2px solid var(--accent); padding-top: 1.5rem; }
.r-pillar svg { color: var(--accent); width: 1.75rem; height: 1.75rem; margin-bottom: 1rem; }
.r-pillar h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0; font-weight: 500; }
.r-pillar p { margin-top: 0.75rem; line-height: 1.6; color: var(--muted-foreground); }

/* Benefits */
.r-benefits__grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .r-benefits__grid { grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; } }
@media (min-width: 1024px) { .r-benefits__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.r-benefit svg { color: var(--accent); width: 2rem; height: 2rem; margin-bottom: 1rem; }
.r-benefit h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0; font-weight: 500; }
.r-benefit p { margin-top: 0.5rem; line-height: 1.6; color: var(--muted-foreground); }

/* SpecialFacts (dark) */
.r-special { background: var(--primary); color: var(--primary-foreground); padding-block: 5rem; position: relative; overflow: hidden; }
@media (min-width: 768px) { .r-special { padding-block: 8rem; } }
.r-special .r-kicker { color: hsl(39 38% 96% / 0.6); }
.r-special__grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .r-special__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; margin-top: 4rem; } }
.r-special__num { font-family: var(--font-serif); font-size: 3rem; color: var(--accent); }
@media (min-width: 768px) { .r-special__num { font-size: 3.75rem; } }
.r-special h3 { margin-top: 1rem; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.25; font-weight: 500; }
.r-special p { margin-top: 0.75rem; line-height: 1.6; color: hsl(39 38% 96% / 0.75); }

/* ForWhom */
.r-forwhom__cols { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .r-forwhom__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3.5rem; } }
.r-forwhom__col { border: 1px solid var(--border); background: var(--card); padding: 1.5rem; border-radius: var(--radius); }
@media (min-width: 768px) { .r-forwhom__col { padding: 2rem; } }
.r-forwhom__col--no { background: hsl(39 38% 97% / 0.6); }
.r-forwhom__col h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0; font-weight: 500; color: var(--primary); }
.r-forwhom__col h3.muted { color: var(--muted-foreground); }
.r-forwhom__col ul { margin-top: 1.5rem; padding: 0; list-style: none; display: grid; gap: 1rem; }
.r-forwhom__col li { display: flex; gap: 0.75rem; line-height: 1.6; }
.r-forwhom__col li svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; margin-top: 0.25rem; color: var(--accent); }
.r-forwhom__col--no, .r-forwhom__col--no ul { color: var(--muted-foreground); }
.r-forwhom__col--no li svg { color: currentColor; opacity: 0.6; }

/* Includes */
.r-includes__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .r-includes__grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }
.r-includes__list { padding: 0; margin: 0; list-style: none; display: grid; grid-template-columns: 1fr; column-gap: 2rem; row-gap: 0; }
@media (min-width: 640px) { .r-includes__list { grid-template-columns: 1fr 1fr; row-gap: 0.75rem; } }
.r-includes__list li { border-bottom: 1px solid var(--border); padding: 0.75rem 0; font-family: var(--font-sans); font-size: 0.9375rem; line-height: 1.4; }

/* Timeline */
.r-timeline { margin-top: 3rem; position: relative; border-left: 2px solid hsl(18 42% 48% / 0.4); padding: 0; list-style: none; }
@media (min-width: 768px) { .r-timeline { margin-top: 3.5rem; } }
.r-timeline li { position: relative; padding: 0 0 2rem 1.75rem; }
@media (min-width: 768px) { .r-timeline li { padding: 0 0 2.5rem 2.5rem; } }
.r-timeline li:last-child { padding-bottom: 0; }
.r-timeline__dot { position: absolute; left: -9px; top: 4px; height: 1rem; width: 1rem; border-radius: 50%; background: var(--accent); }
.r-timeline__day { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); }
.r-timeline h3 { margin-top: 0.5rem; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; }
@media (min-width: 768px) { .r-timeline h3 { font-size: 1.875rem; } }
.r-timeline p { margin-top: 0.5rem; line-height: 1.6; color: var(--muted-foreground); }

/* About */
.r-about__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .r-about__grid { grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: center; } }
.r-about__photo { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--secondary); }
.r-about__photo img { width: 100%; height: 100%; object-fit: cover; }
.r-about__body p { margin-top: 1rem; line-height: 1.6; color: hsl(95 18% 14% / 0.85); }
.r-about__body ul { margin-top: 1rem; padding-left: 1.25rem; line-height: 1.6; color: hsl(95 18% 14% / 0.85); }
.r-about__body ul li { margin: 0.25rem 0; }
.r-about__roles { margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .r-about__roles { grid-template-columns: 1fr 1fr; } }
.r-about__role { border-left: 2px solid hsl(18 42% 48% / 0.6); padding-left: 1rem; }
.r-about__role p:first-child { margin: 0; font-family: var(--font-serif); font-size: 1.125rem; }
.r-about__role p:last-child  { margin: 0; font-size: 0.875rem; color: var(--muted-foreground); }
.r-about__italic { font-family: var(--font-serif); font-style: italic; color: hsl(95 18% 14% / 0.9); white-space: pre-line; font-size: 1.25rem; line-height: 1.5; }
.r-about__guides { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid hsl(36 18% 80% / 0.6); }
.r-about__guides-intro { text-align: center; font-size: 1rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .r-about__guides-intro { font-size: 1.125rem; } }
.r-about__guides-grid { margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .r-about__guides-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.r-guide { display: flex; flex-direction: column; align-items: center; text-align: center; }
.r-guide__img { width: 10rem; height: 10rem; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--border); }
@media (min-width: 768px) { .r-guide__img { width: 12rem; height: 12rem; } }
.r-guide__name { margin-top: 1rem; font-family: var(--font-serif); font-size: 1.25rem; }
.r-guide__role { font-size: 0.875rem; color: var(--muted-foreground); }
.r-guide__bio { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.55; color: hsl(95 18% 14% / 0.85); white-space: pre-line; }
.r-guide__tag { margin-top: 0.75rem; font-weight: 500; color: var(--accent); }
.r-guide__quote { margin-top: 0.5rem; font-family: var(--font-serif); font-style: italic; color: hsl(95 18% 14% / 0.8); }

/* Testimonials */
.r-test__grid {
    margin-top: 2.5rem;
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
    align-items: stretch;
}
@media (min-width: 768px) {
    .r-test__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
}
.r-test__card {
    display: flex; flex-direction: column;
    height: 100%; min-height: 100%;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    text-align: left;
    position: relative;
}
@media (min-width: 768px) { .r-test__card { padding: 2.5rem 2rem; } }
.r-test__card::before {
    content: '"';
    position: absolute; top: 0.5rem; left: 1.25rem;
    font-family: var(--font-serif);
    font-size: 4.5rem; line-height: 1;
    color: var(--accent); opacity: 0.25;
    pointer-events: none;
}
.r-test__quote {
    font-family: var(--font-serif); font-style: italic;
    font-size: 1.0625rem; line-height: 1.6;
    color: hsl(95 18% 14% / 0.85);
    margin: 0; flex: 1 1 auto;
    quotes: '„' '"' '‚' '\'';
}
@media (min-width: 768px) { .r-test__quote { font-size: 1.125rem; } }
.r-test__cap {
    margin-top: 1.75rem; padding-top: 1.25rem;
    border-top: 1px solid hsl(36 18% 80% / 0.5);
    font-family: var(--font-sans); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--muted-foreground);
    flex-shrink: 0;
}
.r-test__placeholder {
    aspect-ratio: 1/1;
    border: 1px dashed var(--border);
    background: hsl(39 38% 97% / 0.5);
    padding: 1.5rem; border-radius: var(--radius);
    text-align: left;
    display: flex; flex-direction: column; justify-content: space-between;
}

/* FAQ */
.r-faq__list { margin-top: 2rem; }
@media (min-width: 768px) { .r-faq__list { margin-top: 2.5rem; } }
.r-faq__item { border-bottom: 1px solid var(--border); }
.r-faq__q { width: 100%; background: transparent; border: 0; text-align: left; font-family: var(--font-serif); font-size: 1.125rem; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; color: inherit; list-style: none; }
.r-faq__q::-webkit-details-marker { display: none; }
@media (min-width: 768px) { .r-faq__q { font-size: 1.25rem; padding: 1.5rem 0; } }
.r-faq__q::after { content: ''; flex-shrink: 0; width: 0.625rem; height: 0.625rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.2s; }
.r-faq__item[open] .r-faq__q::after { transform: rotate(-135deg); }
.r-faq__a { padding-bottom: 1.25rem; line-height: 1.6; color: var(--muted-foreground); font-size: 1rem; }
.r-faq__a p { margin: 0.5rem 0; }

/* RiskReduction */
.r-risk__card { display: flex; flex-direction: column; gap: 1.25rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; border-radius: var(--radius); }
@media (min-width: 768px) { .r-risk__card { flex-direction: row; align-items: center; gap: 1.5rem; padding: 2.5rem; } }
.r-risk__card svg { flex-shrink: 0; width: 2.25rem; height: 2.25rem; color: var(--accent); }
@media (min-width: 768px) { .r-risk__card svg { width: 2.5rem; height: 2.5rem; } }
.r-risk__card h3 { margin: 0; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; }
@media (min-width: 768px) { .r-risk__card h3 { font-size: 1.5rem; } }
.r-risk__card > div > p { margin-top: 0.5rem; color: var(--muted-foreground); }
.r-risk__list { margin-top: 1.25rem; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .r-risk__list { grid-template-columns: 1fr 1fr; } }
.r-risk__list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: hsl(95 18% 14% / 0.85); }
.r-risk__list li::before { content: ''; margin-top: 0.625rem; height: 4px; width: 4px; border-radius: 50%; background: var(--accent); }

/* FinalCTA */
.r-final { position: relative; overflow: hidden; }
.r-final__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.r-final__overlay { position: absolute; inset: 0; background: hsl(95 18% 14% / 0.8); }
.r-final__inner { position: relative; max-width: 48rem; margin: 0 auto; text-align: center; padding: 5rem 1.5rem; color: var(--primary-foreground); }
@media (min-width: 768px) { .r-final__inner { padding: 9rem 1.5rem; } }
.r-final__h2 { font-family: var(--font-serif); font-size: 1.875rem; line-height: 1.15; font-weight: 500; text-wrap: balance; margin: 0; }
@media (min-width: 768px) { .r-final__h2 { font-size: 4rem; } }
.r-final__lines p { margin-top: 1.25rem; line-height: 1.6; color: hsl(39 38% 96% / 0.85); font-size: 1rem; white-space: pre-line; }
@media (min-width: 768px) { .r-final__lines p { font-size: 1.125rem; } }
.r-final__closing { margin-top: 1.5rem; font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: hsl(39 38% 96% / 0.9); }
@media (min-width: 768px) { .r-final__closing { font-size: 1.875rem; } }
.r-final .r-btn { margin-top: 2rem; }
@media (min-width: 768px) { .r-final .r-btn { margin-top: 2.5rem; } }

/* Photo Gallery */
.r-gallery { background: hsl(36 24% 86% / 0.4); padding-block: 4rem; }
@media (min-width: 768px) { .r-gallery { padding-block: 7rem; } }
.r-gallery__head { max-width: 36rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .r-gallery__head { margin-bottom: 3.5rem; } }
.r-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .r-gallery__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; } }
.r-gallery__fig { position: relative; overflow: hidden; border-radius: 0.5rem; background: var(--muted); aspect-ratio: 4/3; margin: 0; }
.r-gallery__fig.r-lg { grid-column: span 2 / span 2; aspect-ratio: 4/5; }
@media (min-width: 768px) { .r-gallery__fig.r-lg { grid-row: span 2 / span 2; aspect-ratio: auto; } }
.r-gallery__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.r-gallery__fig:hover img { transform: scale(1.05); }
.r-gallery__credit { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }
.r-gallery__credit svg { width: 1rem; height: 1rem; }

/* Location Map */
.r-map { background: var(--background); padding-block: 4rem; }
@media (min-width: 768px) { .r-map { padding-block: 7rem; } }
.r-map__head { max-width: 36rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .r-map__head { margin-bottom: 3rem; } }
.r-map__head .r-kicker { color: var(--muted-foreground); letter-spacing: 0.3em; font-size: 0.875rem; }
.r-map__facts { margin-top: 1.5rem; display: flex; flex-wrap: wrap; column-gap: 2rem; row-gap: 0.75rem; font-family: var(--font-sans); font-size: 0.875rem; color: var(--foreground); }
.r-map__facts span { display: inline-flex; align-items: center; gap: 0.5rem; }
.r-map__facts svg { color: var(--accent); width: 1rem; height: 1rem; }
.r-map__frame { overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
@media (min-width: 768px) { .r-map__frame { border-radius: 1rem; } }
.r-map__frame iframe { width: 100%; height: 320px; border: 0; display: block; }
@media (min-width: 640px) { .r-map__frame iframe { height: 420px; } }
@media (min-width: 768px) { .r-map__frame iframe { height: 500px; } }
.r-map__link { margin-top: 1.5rem; display: inline-block; font-family: var(--font-sans); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--foreground); text-underline-offset: 8px; }
.r-map__link:hover { text-decoration: underline; }

/* Footer */
.r-footer { background: hsl(95 22% 24% / 0.95); color: var(--primary-foreground); padding-block: 2.5rem; }
@media (min-width: 768px) { .r-footer { padding-block: 3rem; } }
.r-footer__grid { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .r-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.r-footer__brand p:first-child { font-family: var(--font-serif); font-size: 1.5rem; margin: 0; }
.r-footer__brand p:nth-child(2) { margin-top: 0.5rem; font-size: 0.875rem; color: hsl(39 38% 96% / 0.7); }
.r-footer__pill { margin-top: 1rem; display: inline-flex; align-items: center; border: 1px solid hsl(39 38% 96% / 0.3); background: hsl(39 38% 96% / 0.1); padding: 0.5rem 1.25rem; border-radius: 9999px; font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; transition: all 0.2s; }
.r-footer__pill:hover { background: var(--primary-foreground); color: var(--primary); }
.r-footer__col { font-size: 0.875rem; color: hsl(39 38% 96% / 0.8); }
.r-footer__col-title { margin-bottom: 0.5rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.2em; color: hsl(39 38% 96% / 0.5); font-size: 0.75rem; }
.r-footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .r-footer__links { align-items: flex-end; gap: 0.5rem; } }
.r-footer__links a:hover { text-decoration: underline; }
.r-footer__bottom { max-width: 72rem; margin: 2rem auto 0; padding: 1.5rem 1.5rem 0; border-top: 1px solid hsl(39 38% 96% / 0.15); font-size: 0.75rem; color: hsl(39 38% 96% / 0.5); }
@media (min-width: 768px) { .r-footer__bottom { margin-top: 2.5rem; } }

/* Lead Dialog Modal */
.r-modal[hidden] { display: none; }
.r-modal { position: fixed; inset: 0; z-index: 9000; background: hsl(95 18% 14% / 0.6); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.r-modal__inner { position: relative; background: var(--background); color: var(--foreground); width: 100%; max-width: 28rem; border-radius: 0.5rem; padding: 1.75rem 1.5rem 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.35); max-height: 90vh; overflow-y: auto; }
.r-modal__title { font-family: var(--font-serif); font-size: 1.5rem; margin: 0; font-weight: 500; }
.r-modal__desc { margin: 0.5rem 0 1.25rem; color: var(--muted-foreground); font-size: 0.9375rem; }
.r-modal__close { position: absolute; top: 0.5rem; right: 0.5rem; background: transparent; border: 0; padding: 0.5rem; color: var(--muted-foreground); cursor: pointer; line-height: 0; }
.r-modal label { display: block; font-size: 0.8125rem; margin-bottom: 0.25rem; color: var(--foreground); }
.r-modal input[type="text"], .r-modal input[type="email"], .r-modal input[type="tel"] { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid var(--border); background: var(--card); border-radius: 0.375rem; font: inherit; color: inherit; }
.r-modal input:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.r-modal__field { margin-bottom: 0.75rem; }
.r-modal__check { display: flex; gap: 0.75rem; align-items: flex-start; border: 1px solid var(--border); padding: 0.75rem; border-radius: 0.375rem; }
.r-modal__check input { margin-top: 0.2rem; }
.r-modal__check label { margin: 0; cursor: pointer; }
.r-modal__submit { width: 100%; height: 3rem; margin-top: 0.5rem; background: var(--accent); color: var(--accent-foreground); border: 0; border-radius: 0.375rem; font: inherit; font-weight: 500; cursor: pointer; }
.r-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.r-modal__success { padding: 1.5rem 0.5rem; text-align: center; }
.r-modal__error { color: hsl(0 65% 40%); font-size: 0.875rem; margin-top: 0.5rem; }

/* === Cookie Glass Pill (floaty bottom-left, follows scroll) ============ */
.r-cookie[hidden] { display: none; }
.r-cookie {
    position: fixed; bottom: 1.25rem; left: 1.25rem; right: auto;
    max-width: 360px; z-index: 9000;
    background: rgba(20, 26, 18, 0.78);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.42), 0 2px 6px rgba(0,0,0,0.18);
    padding: 1rem 1.15rem 1.05rem;
    display: flex; flex-direction: column; gap: 0.75rem;
    transform: translateY(16px); opacity: 0;
    transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.36s ease;
    color: #fff;
}
.r-cookie.is-visible { transform: translateY(0); opacity: 1; }
.r-cookie__text {
    margin: 0; font-family: var(--font-sans); font-size: 0.82rem;
    line-height: 1.5; color: rgba(255, 255, 255, 0.82);
}
.r-cookie__link {
    color: rgba(255, 255, 255, 0.96);
    text-decoration: underline; text-underline-offset: 2px;
}
.r-cookie__link:hover { color: hsl(18 60% 65%); }
.r-cookie__actions { display: flex; gap: 0.5rem; }
.r-cookie__btn {
    flex: 1 1 0; border: 0; cursor: pointer;
    border-radius: 9999px; padding: 0.55rem 0.9rem;
    font: inherit; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.r-cookie__btn--solid { background: var(--accent); color: var(--accent-foreground); }
.r-cookie__btn--solid:hover { background: hsl(18 50% 55%); }
.r-cookie__btn--ghost {
    background: transparent; color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.r-cookie__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.40);
    color: #fff;
}
@media (max-width: 480px) {
    .r-cookie { left: 0.85rem; right: 0.85rem; max-width: none; }
}

/* Legal pages */
.r-legal { padding: 8rem 0 5rem; max-width: 48rem; margin: 0 auto; padding-inline: 1.5rem; }
.r-legal h1 { font-family: var(--font-serif); font-size: 2.5rem; margin: 0 0 1.5rem; }
.r-legal h2 { font-family: var(--font-serif); font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.r-legal p, .r-legal li { line-height: 1.7; color: hsl(95 18% 14% / 0.85); }
.r-legal ul { padding-left: 1.25rem; }

/* skip-link override (already styled in head; keep accessibility default) */
