/* 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 { display: inline-flex; align-items: center; line-height: 0; transition: filter 0.3s; }
.r-header__brand-img { height: 3.75rem; width: auto; display: block; transition: filter 0.3s; }
@media (min-width: 768px) { .r-header__brand-img { height: 4.5rem; } }
.r-header__brand-img { filter: brightness(0) invert(1); }
.r-header.is-scrolled .r-header__brand-img, .r-header.is-open .r-header__brand-img { filter: none; }
.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; }
.r-hero__divider { display: inline-block; transform: scaleY(2); transform-origin: center; font-weight: 200; opacity: 0.7; padding: 0 0.05em; }
.r-hero__sep { display: inline; }
@media (max-width: 600px) {
    .r-hero__kicker .r-hero__sep { display: block; height: 0; line-height: 0; font-size: 0; opacity: 0; padding: 0; }
    .r-hero__kicker .r-hero__divider { transform: scaleY(1.5); padding: 0 0.15em; }
}

/* 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__head { max-width: 720px; margin-bottom: 2rem; }
@media (min-width: 768px) { .r-includes__head { margin-bottom: 2.5rem; } }
.r-includes__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: start; }
@media (min-width: 640px) { .r-includes__grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (min-width: 1024px) { .r-includes__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; } }
.r-includes__box { --box-bg: hsl(36 28% 87%); background: var(--box-bg); border: 1px solid hsl(36 18% 78%); border-radius: 0.875rem; padding: 1.25rem 1.125rem; display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.r-includes__box .r-includes__box-list { margin-bottom: 1.125rem; }
.r-includes__box .r-includes__box-list:last-child { margin-bottom: 0; }
.r-includes__media { position: relative; margin: 0.75rem -1.125rem -1.25rem; aspect-ratio: 2/3; overflow: hidden; background: var(--secondary); }
.r-includes__media::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 32%;
    background: linear-gradient(to bottom, var(--box-bg) 0%, transparent 100%);
    pointer-events: none; z-index: 1;
}
.r-includes__box--primary { --box-bg: hsl(36 28% 87%); border-color: hsl(36 18% 78%); }
.r-includes__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.r-includes__box-title { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 500; line-height: 1.2; margin: 0 0 1.25rem; min-height: 3.6em; display: flex; align-items: flex-start; }
@media (min-width: 768px) { .r-includes__box-title { font-size: 1.25rem; margin-bottom: 1.5rem; min-height: 3.6em; } }
@media (min-width: 1024px) { .r-includes__box-title { margin-bottom: 1.75rem; min-height: 3.8em; } }
.r-includes__box-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.r-includes__box-list li { border-top: 1px solid var(--border); padding: 0.5rem 0; font-family: var(--font-sans); font-size: 0.875rem; line-height: 1.4; min-height: 2.75em; display: flex; align-items: center; }
.r-includes__box-list li:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 1024px) { .r-includes__box-list li { min-height: 3em; } }

/* 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: stretch; } }
.r-about__photo { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--secondary); }
@media (min-width: 768px) { .r-about__photo { aspect-ratio: auto; height: 100%; min-height: 100%; align-self: stretch; } }
.r-about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.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; white-space: pre-line; }
.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-head { text-align: left; max-width: 44rem; margin: 0; }
.r-about__guides-kicker { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); margin: 0 0 0.75rem; }
.r-about__guides-title { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 500; line-height: 1.15; margin: 0; color: hsl(95 18% 14%); text-wrap: balance; }
@media (min-width: 768px) { .r-about__guides-title { font-size: 3rem; } }
.r-about__guides-intro { text-align: left; font-size: 1rem; color: var(--muted-foreground); margin-top: 1rem; }
@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: flex; flex-direction: row; gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.25rem;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 1.25rem 1.25rem;
    margin-left: -1.25rem; margin-right: -1.25rem;
    scrollbar-width: none;
}
.r-test__grid::-webkit-scrollbar { display: none; }
.r-test__grid > .r-test__card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
@media (min-width: 768px) {
    .r-test__grid {
        display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem;
        margin: 3.5rem 0 0; padding: 0; overflow: visible;
    }
    .r-test__grid > .r-test__card { flex: 1 1 auto; }
}
.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; }
.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__carousel { position: relative; width: 100%; overflow: hidden; background: var(--muted); }
.r-gallery__track { display: flex; margin: 0; padding: 0; list-style: none; scroll-snap-type: x mandatory; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.r-gallery__track::-webkit-scrollbar { display: none; }
.r-gallery__slide { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; aspect-ratio: 16/9; position: relative; }
@media (max-width: 767px) { .r-gallery__slide { aspect-ratio: 4/5; } }
.r-gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.r-gallery__slide--has-quote::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,0.20) 0%, rgba(20,20,20,0.55) 100%); pointer-events: none; }
.r-gallery__quote { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; padding: 1.5rem 1.5rem 4rem; margin: 0; color: #fff; text-align: center; pointer-events: none; z-index: 1; }
.r-gallery__quote-text { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.25rem, 3vw, 2.5rem); line-height: 1.3; max-width: none; white-space: nowrap; text-shadow: 0 2px 16px rgba(0,0,0,0.45); quotes: '„' '"' '‚' '\''; }
@media (max-width: 900px) { .r-gallery__quote-text { white-space: normal; max-width: 36rem; font-size: clamp(1.05rem, 4.2vw, 1.75rem); text-wrap: balance; } }
.r-gallery__quote-meta { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.r-gallery__quote-meta p { margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.r-gallery__quote-author { font-family: var(--font-serif); font-size: clamp(1rem, 1.6vw, 1.25rem); letter-spacing: 0.01em; }
.r-gallery__quote-role { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; opacity: 0.92; }
.r-gallery__quote-bio { font-family: var(--font-sans); font-size: 0.875rem; max-width: 30rem; opacity: 0.86; line-height: 1.45; }
.r-gallery__nav { position: absolute; top: 1rem; transform: none; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(20,20,20,0.42); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background 0.25s, transform 0.25s; z-index: 2; }
.r-gallery__nav:hover { background: rgba(20,20,20,0.62); }
.r-gallery__nav:active { transform: scale(0.96); }
.r-gallery__nav svg { width: 1.25rem; height: 1.25rem; }
.r-gallery__nav--prev { left: 1rem; }
.r-gallery__nav--next { right: 1rem; }
@media (min-width: 768px) { .r-gallery__nav { top: 50%; transform: translateY(-50%); width: 3.25rem; height: 3.25rem; } .r-gallery__nav--prev { left: 1.5rem; } .r-gallery__nav--next { right: 1.5rem; } .r-gallery__nav:active { transform: translateY(-50%) scale(0.96); } }
.r-gallery__dots { position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%); display: inline-flex; gap: 0.5rem; padding: 0.5rem 0.875rem; border-radius: 999px; background: rgba(20,20,20,0.32); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2; }
.r-gallery__dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; border: 0; padding: 0; background: rgba(255,255,255,0.5); cursor: pointer; transition: width 0.25s, background 0.25s; }
.r-gallery__dot.is-active { width: 1.5rem; background: #fff; }
.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 */
/* Inline contact form section — mirrors the popup-modal look */
.r-contactform__divider { background: var(--background); padding: 2.5rem 1.5rem 0; }
.r-contactform__divider::before { content: ''; display: block; max-width: 44rem; margin: 0 auto; height: 1px; background: linear-gradient(to right, transparent 0%, hsl(95 18% 14% / 0.18) 30%, hsl(95 18% 14% / 0.18) 70%, transparent 100%); }
.r-contactform { background: var(--background); padding-block: 4rem; }
@media (min-width: 768px) { .r-contactform { padding-block: 6rem; } }
.r-contactform__inner { max-width: 44rem; margin: 0 auto; padding: 1.75rem 1.5rem 1.5rem; }
@media (min-width: 768px) { .r-contactform__inner { padding: 2rem 2rem 1.5rem; } }
.r-contactform__inner > .r-kicker { margin-bottom: 1rem; }
.r-contactform__inner > .r-lead { margin-top: 1.25rem; margin-bottom: 1.75rem; }
.r-contactform__inner > form { margin-top: 0.5rem; }
.r-contactform__inner label { display: block; font-size: 0.8125rem; margin-bottom: 0.25rem; color: var(--foreground); }
.r-contactform__inner input[type="text"],
.r-contactform__inner input[type="email"],
.r-contactform__inner 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-contactform__inner input:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.r-contactform__success { padding: 1.5rem 0.5rem; text-align: center; max-width: 44rem; margin: 0 auto; }
.r-contactform__success h3 { font-family: var(--font-serif); font-size: 1.25rem; margin: 0; }

.r-prefooter { position: relative; height: 72vh; min-height: 560px; max-height: 1040px; overflow: hidden; }
.r-prefooter__inner { position: absolute; inset: 0; background-position: center center; background-size: cover; background-repeat: no-repeat; }
.r-prefooter__inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,0.20) 0%, rgba(20,20,20,0.42) 100%); pointer-events: none; }
.r-prefooter__quote { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem 1.25rem; margin: 0; color: #fff; text-align: center; font-family: var(--font-serif); font-style: italic; line-height: 1.5; text-shadow: 0 2px 16px rgba(0,0,0,0.45); pointer-events: none; }
.r-prefooter__quote span { display: block; font-size: clamp(1.05rem, 2.2vw, 1.875rem); letter-spacing: 0.005em; }
.r-prefooter--band { height: 36vh; min-height: 280px; max-height: 520px; }
.r-prefooter--band .r-prefooter__inner::after { display: none; }
.r-prefooter--band .r-prefooter__quote { display: none; }
@media (max-width: 767px) { .r-prefooter--band .r-prefooter__inner { background-position: 78% center; } }
.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-img { display: block; width: 100%; max-width: 16rem; height: auto; filter: brightness(0) invert(1); margin: 0 0 0.75rem; }
.r-footer__brand p { 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; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y; }
.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); margin: auto; touch-action: pan-y; }
@media (max-width: 600px), (max-height: 760px) {
    .r-modal { align-items: flex-start; padding: 0.75rem; }
    .r-modal__inner { margin: 0 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__consent { margin: 0; padding: 0.75rem 0.875rem; font-size: 0.8125rem; line-height: 1.5; color: var(--muted-foreground); border: 1px solid var(--border); border-radius: 0.5rem; background: hsl(36 24% 96% / 0.5); }
.r-modal__dates { margin: 0 0 0.75rem; padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem; display: grid; gap: 0.5rem; }
.r-modal__dates legend { padding: 0 0.375rem; margin-left: -0.375rem; font-family: var(--font-sans); font-size: 0.875rem; color: var(--foreground); font-weight: 500; }
.r-modal__dates legend span { color: var(--accent); }
.r-modal__req { color: var(--accent); font-weight: 500; }
.r-modal__date { display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: 0.375rem; cursor: pointer; transition: background 0.15s, border-color 0.15s; font-family: var(--font-sans); font-size: 0.9375rem; }
.r-modal__date:hover { background: hsl(18 42% 48% / 0.04); border-color: hsl(18 42% 48% / 0.35); }
.r-modal__date input { accent-color: var(--accent); width: 1rem; height: 1rem; flex-shrink: 0; }
.r-modal__date:has(input:checked) { background: hsl(18 42% 48% / 0.08); border-color: var(--accent); }
.r-modal__date-note { font-style: italic; color: var(--muted-foreground); font-size: 0.8125rem; font-weight: 400; margin: 0.25rem 0 0; padding: 0 0.25rem; text-align: center; }
.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) */
