/* ============================================================
   HAIR & STYLES — Barbershop Wuppertal
   PALORAH Elite Build · Palette: "Werkstatt" (Charcoal + Brass)
   ------------------------------------------------------------
   Structure of this file:
   0. Design Tokens (:root)
   1. Base Reset + Global Defaults
   2. Accessibility (focus, skip-link, reduced-motion)
   3. Scroll Reveal
   4. Layout Utilities (container, section, buttons, eyebrow)
   5. Navigation
   6. Cookie Banner + Modal
   7. Floating Buttons (WhatsApp, Back-to-top)
   8. Print
   --- Section styles appended below in Phase 3 ---
   ============================================================ */

/* === 0. DESIGN TOKENS ====================================== */
:root {
    /* — Colour: Werkstatt — */
    --color-bg:          #1C1A18;          /* page base / dark canvas */
    --color-bg-rgb:      28, 26, 24;
    --color-surface:     #262320;          /* raised panels / cards */
    --color-surface-2:   #2F2B26;          /* hover / deeper surface */
    --color-primary:     #1C1A18;          /* brand dark (nav, banner) */
    --color-primary-rgb: 28, 26, 24;
    --color-accent:      #C8902F;          /* brass */
    --color-accent-rgb:  200, 144, 47;
    --color-accent-dark: #A8761F;          /* brass pressed/hover */
    --color-text:        #EDE6DC;          /* primary body text */
    --color-text-light:  #EDE6DC;          /* alias used by components */
    --color-text-muted:  #B0A698;          /* secondary text (7.2:1 on bg) */
    --color-heading:     #F5EFE6;          /* headings (slightly brighter) */
    --color-border:      rgba(237, 230, 220, 0.14);

    /* — Typography — */
    --font-heading: 'Space Grotesk', system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body:    'Source Sans 3', system-ui, -apple-system, "Segoe UI",
                    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;

    /* — Layout / spacing — */
    --container-width:   1200px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    --section-padding:   clamp(4rem, 8vw, 7rem);   /* "Balanced" doctrine */
    --nav-height:        80px;
    --radius:            8px;

    /* — Motion — */
    --t:      280ms ease;
    --t-slow: 600ms ease;

    /* Uniform dark site → safe to declare (native inputs/scrollbars go dark) */
    color-scheme: dark;
}

/* === 1. BASE RESET + GLOBAL DEFAULTS ======================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);     /* matches fixed nav height */
    -webkit-text-size-adjust: 100%;
    background-color: var(--color-bg);         /* stop browser dark-mode guessing */
    color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    max-width: 100%;
    min-height: 100svh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    color: var(--color-heading);
    font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.25rem); letter-spacing: -0.03em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem);  letter-spacing: -0.02em; line-height: 1.08; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); letter-spacing: -0.01em; line-height: 1.2; }

p  { max-width: 65ch; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t);
}

strong, b { font-weight: 600; color: var(--color-heading); }

img, video, svg, picture {
    display: block;
    max-width: 100%;
}

ul, ol { list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }

button { cursor: pointer; background: none; border: none; }

/* Touch — scroll passes through interactive elements (PDF 01 / Issue 07) */
a, button, label, select, summary,
input[type="submit"], input[type="button"], input[type="reset"],
[role="button"], [role="tab"], [role="menuitem"] {
    touch-action: manipulation;
}

/* Remove tap flash on touch browsers */
*, *::before, *::after { -webkit-tap-highlight-color: transparent; }

/* Prevent iOS zoom on input focus */
input, textarea, select { font-size: 16px; }

/* === 2. ACCESSIBILITY ====================================== */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 2px;
}
.btn:focus-visible,
.nav__cta:focus-visible,
.cookie-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.45);
}

::selection {
    background: var(--color-accent);
    color: var(--color-primary);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.6rem 1.1rem;
    border-radius: 0 0 6px 6px;
    font-weight: 700;
    z-index: 9999;
    transition: top 200ms;
}
.skip-link:focus { top: 0; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* OS-level reduced motion — highest priority */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* === 3. SCROLL REVEAL ====================================== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 90ms; }
.reveal--delay-2 { transition-delay: 180ms; }
.reveal--delay-3 { transition-delay: 270ms; }

/* Mobile: kill all entrance animation (PDF 01) */
@media (max-width: 768px) {
    .reveal,
    [class*="animate"],
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* === 4. LAYOUT UTILITIES =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}
.section--surface { background: var(--color-surface); }

/* Eyebrow label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 0.9rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: var(--radius);
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary);
}
.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
@media (hover: hover) {
    .btn--primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); }
    .btn--ghost:hover   { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
}

/* === 5. NAVIGATION ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 300ms ease, backdrop-filter 300ms ease,
                box-shadow 300ms ease, transform 400ms ease;
}
.nav__container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.nav__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--color-heading);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
}
.nav__logo span { color: var(--color-accent); }

.nav__links {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
}
.nav__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    padding: 0.25rem 0;
}
.nav__link:not(.nav__cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1.5px;
    background: var(--color-accent);
    transition: width var(--t);
}
@media (hover: hover) {
    .nav__link:not(.nav__cta):hover { color: var(--color-accent); }
    .nav__link:not(.nav__cta):hover::after { width: 100%; }
}
.nav__cta {
    min-height: 44px;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius);
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
    text-shadow: none;
    transition: background var(--t), transform var(--t);
}
@media (hover: hover) {
    .nav__cta:hover { background: var(--color-accent-dark); transform: translateY(-2px); }
}

/* Scrolled state */
.nav.scrolled {
    background: rgba(var(--color-primary-rgb), 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
}
@media (max-width: 768px) {
    /* No backdrop-filter on mobile (GPU) — use solid fallback */
    .nav.scrolled {
        background: rgba(var(--color-primary-rgb), 0.97);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Sub-pages: nav always solid */
.subpage .nav {
    background: rgba(var(--color-primary-rgb), 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
}

/* Hamburger */
.nav__burger {
    grid-column: 3;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 20px;
    z-index: 1100;
    justify-self: end;
}
.nav__burger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 300ms ease, opacity 300ms ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
    /* Keep middle column from collapsing (Issue 15) */
    .nav__container { grid-template-columns: 1fr auto; }
    .nav__burger { display: flex; }

    .nav__links {
        position: fixed;
        top: 0; right: 0;
        width: min(330px, 86vw);
        height: 100svh;
        background: var(--color-primary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2.5rem 2rem;
        gap: 1.4rem;
        transform: translateX(100%);
        transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
    }
    .nav__links.is-open { transform: translateX(0); }
    .nav__link {
        font-size: 1.2rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--color-border);
        text-shadow: none;
    }
    .nav__cta {
        margin-top: 0.8rem;
        width: 100%;
        text-align: center;
        border-bottom: none !important;
    }
}

/* === 6. COOKIE BANNER + MODAL ============================== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(680px, calc(100% - 2rem));
    background: var(--color-surface);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    padding: 1.5rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-heading);
}
.cookie-banner__text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    margin: 0 0 1.25rem;
    max-width: none;
}
.cookie-banner__text a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* TDDDG §25: all three buttons EQUAL visual weight — no dark pattern */
.cookie-btn {
    flex: 1 1 0;
    min-width: 120px;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 400;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: background 200ms ease, border-color 200ms ease;
    white-space: nowrap;
}
@media (hover: hover) {
    .cookie-btn:hover { background: rgba(237, 230, 220, 0.08); border-color: rgba(237, 230, 220, 0.4); }
}
@media (max-width: 480px) {
    .cookie-banner { bottom: 0; left: 0; transform: none; width: 100%; border-radius: 12px 12px 0 0; }
    .cookie-btn { min-width: unset; font-size: 0.8rem; }
}

/* Cookie settings modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__inner {
    width: min(560px, 100%);
    max-height: 90svh;
    overflow-y: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}
.cookie-modal__title { font-size: 1.4rem; margin-bottom: 1.25rem; }
.cookie-category {
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
}
.cookie-category:first-of-type { border-top: none; }
.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-heading);
    cursor: pointer;
}
.cookie-category input { width: 18px; height: 18px; accent-color: var(--color-accent); }
.cookie-category p { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.4rem; max-width: none; }
.cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Detailed modal v2 */
.cookie-modal__inner { position: relative; }
.cookie-modal__close {
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--color-text-muted);
    border-radius: 8px;
    transition: color var(--t), background var(--t);
}
@media (hover: hover) {
    .cookie-modal__close:hover { color: var(--color-accent); background: rgba(237, 230, 220, 0.07); }
}
.cookie-modal__intro {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: none;
}
.cookie-modal__intro a { color: var(--color-accent); text-decoration: underline; }

.cookie-cat {
    padding: 1.1rem 0;
    border-top: 1px solid var(--color-border);
}
.cookie-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.cookie-cat__name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-heading);
    font-size: 1.02rem;
}
.cookie-cat__desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: none;
}
.cookie-cat__list {
    margin-top: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.cookie-cat__list li {
    position: relative;
    padding-left: 0.95rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}
.cookie-cat__list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.5em;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
}
.cookie-cat__list strong { color: var(--color-text); font-weight: 600; }
.cookie-cat__status {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    background: rgba(var(--color-accent-rgb), 0.07);
    border-left: 2px solid rgba(var(--color-accent-rgb), 0.5);
    border-radius: 0 6px 6px 0;
    padding: 0.55rem 0.75rem;
    max-width: none;
}

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__track {
    position: absolute;
    inset: 0;
    background: rgba(237, 230, 220, 0.2);
    border-radius: 999px;
    transition: background var(--t);
}
.switch__track::after {
    content: "";
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--color-text);
    transition: transform var(--t), background var(--t);
}
.switch input:checked + .switch__track { background: var(--color-accent); }
.switch input:checked + .switch__track::after { transform: translateX(20px); background: var(--color-primary); }
.switch input:disabled + .switch__track { opacity: 0.5; }
.switch input:focus-visible + .switch__track { box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.4); }

/* === 7. FLOATING BUTTONS =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 56px; height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: opacity 300ms ease, transform 300ms ease, box-shadow 200ms ease;
    pointer-events: none;
}
.whatsapp-float.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}
@media (hover: hover) {
    .whatsapp-float:hover { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); transform: scale(1.08); }
}

.back-to-top {
    position: fixed;
    bottom: 2rem; left: 2rem;
    width: 44px; height: 44px;
    background: var(--color-surface);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 300ms ease, transform 300ms ease, background 200ms ease, color 200ms ease;
    pointer-events: none;
}
.back-to-top:not([hidden]) { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top[hidden] { display: flex; }
@media (hover: hover) {
    .back-to-top:hover { background: var(--color-accent); color: var(--color-primary); border-color: transparent; }
}

@media (max-width: 768px) {
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
    .back-to-top  { bottom: 1.25rem; left: 1.25rem; }
}

/* === 8. PRINT ============================================== */
@media print {
    .nav, .nav__burger, .cookie-banner, .cookie-modal,
    .whatsapp-float, .back-to-top, .hero__scroll { display: none !important; }
    * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
    a { text-decoration: underline; }
    .section { padding: 1rem 0; }
}

/* ============================================================
   SECTION STYLES — appended per section in Phase 3
   ============================================================ */

/* === HERO ================================================== */
/* Ref: section-design.md Hero Option 1 (full-bleed photo) + Pattern B dual overlay */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    /* CSS gradient fallback if the image fails to load */
    background: linear-gradient(135deg, #2a211a 0%, var(--color-primary) 100%);
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
@media (prefers-reduced-motion: no-preference) {
    .hero__img { animation: kenBurns 12s ease-out forwards; }
}
@keyframes kenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}

/* Dual gradient overlay — top (nav zone) + bottom (content zone) */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(var(--color-primary-rgb), 0.75) 0%, rgba(var(--color-primary-rgb), 0) 30%),
        linear-gradient(to top,    rgba(var(--color-primary-rgb), 0.96) 0%, rgba(var(--color-primary-rgb), 0.82) 32%, rgba(var(--color-primary-rgb), 0.40) 62%, rgba(var(--color-primary-rgb), 0) 82%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-width);
    padding-bottom: clamp(4rem, 11vh, 8rem);
    padding-top: var(--nav-height);
}
.hero__title {
    font-size: clamp(3.2rem, 11vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin: 1.1rem 0 0;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    max-width: 16ch;
}
.hero__eyebrow { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5); }
.hero__subtitle {
    margin-top: 1.5rem;
    max-width: 46ch;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(237, 230, 220, 0.9);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.hero__ctas {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}
/* Hero ghost CTA reads on photo — lighten border + white text */
.hero__ctas .btn--ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}
@media (hover: hover) {
    .hero__ctas .btn--primary:hover { box-shadow: 0 12px 30px rgba(var(--color-accent-rgb), 0.4); }
    .hero__ctas .btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; }
}

/* Text stagger entrance (desktop, motion-allowed) */
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
    .hero__eyebrow, .hero__title, .hero__subtitle, .hero__ctas {
        opacity: 0;
        animation: heroRise 0.7s ease forwards;
    }
    .hero__eyebrow  { animation-delay: 80ms; }
    .hero__title    { animation-delay: 200ms; }
    .hero__subtitle { animation-delay: 340ms; }
    .hero__ctas     { animation-delay: 460ms; }
}
@keyframes heroRise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

/* Scroll cue */
.hero__scroll {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero__scroll-line {
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}
@media (prefers-reduced-motion: no-preference) {
    .hero__scroll-line { animation: scrollPulse 1.8s ease-in-out infinite; }
}
@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50%      { transform: translateY(8px); opacity: 1; }
}
@media (max-width: 768px) {
    .hero { align-items: flex-end; }
    .hero__scroll { display: none; }
    .hero__title { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6); }
}

/* === SHARED SECTION HEAD =================================== */
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-top: 1rem; }
.section-head__sub {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* === ÜBER UNS ============================================== */
.ueber__inner {
    display: grid;
    grid-template-columns: 7fr 5fr;   /* clear skew, not 50/50 */
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}
.ueber__text h2 { margin-top: 1rem; }
.ueber__lead { margin-top: 1.5rem; color: var(--color-text-muted); }
.ueber__quote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 500;
    line-height: 1.32;
    color: var(--color-heading);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2.25rem 0;
    max-width: 30ch;
}
.ueber__stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}
.ustat__num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.ustat__plus { color: var(--color-accent); }
.ustat__label {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}
.ueber__image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
}
.ueber__image-wrap::before {
    content: "";
    position: absolute;
    inset: auto -14px -14px 14px;
    height: 60%;
    background: rgba(var(--color-accent-rgb), 0.14);
    border-radius: var(--radius);
    z-index: -1;
}
.ueber__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
@media (hover: hover) { .ueber__image-wrap:hover img { transform: scale(1.04); } }
@media (max-width: 768px) {
    .ueber__inner { grid-template-columns: 1fr; }
    .ueber__image-wrap { aspect-ratio: 3 / 2; max-height: 420px; }
}
@media (max-width: 420px) {
    .ueber__stats { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

/* === LEISTUNGEN & PREISE =================================== */
.leistungen {
    position: relative;
    overflow: hidden;
    /* Brushed diagonal weave — subtle "fabric/metal" texture */
    background-color: var(--color-surface);
    background-image: repeating-linear-gradient(
        135deg,
        rgba(237, 230, 220, 0.022) 0px,
        rgba(237, 230, 220, 0.022) 1px,
        transparent 1px,
        transparent 9px
    );
}
/* Warm brass glow for richness */
.leistungen::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -8%;
    width: 540px;
    height: 540px;
    max-width: 80vw;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.16) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
/* Fine film grain over the weave */
.leistungen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='lz'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23lz)'/%3E%3C/svg%3E");
    background-size: 190px 190px;
    opacity: 0.05;
    mix-blend-mode: overlay;
}
.leistungen .container { position: relative; z-index: 1; }

.leistungen__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.leist-card {
    position: relative;
    background: linear-gradient(160deg, rgba(47, 43, 38, 0.6) 0%, var(--color-bg) 100%);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
/* brass top edge */
.leist-card::after {
    content: "";
    position: absolute;
    top: -1px; left: 1.5rem; right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
    opacity: 0.7;
}
@media (hover: hover) {
    .leist-card:hover {
        transform: translateY(-5px);
        border-color: rgba(var(--color-accent-rgb), 0.45);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35),
                    0 0 0 1px rgba(var(--color-accent-rgb), 0.12);
    }
}

.leist-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}
.leist-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
    color: var(--color-accent);
}
.leist-card__icon svg { width: 22px; height: 22px; }
.leist-card__title {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    color: var(--color-heading);
}

/* Featured card (Kombi) */
.leist-card--featured {
    background: linear-gradient(160deg, rgba(var(--color-accent-rgb), 0.16) 0%, rgba(40, 32, 22, 0.5) 100%);
    border-color: rgba(var(--color-accent-rgb), 0.5);
}
.leist-card--featured::after { opacity: 1; left: 0; right: 0; height: 3px; background: var(--color-accent); }
.leist-card__badge {
    position: absolute;
    top: -14px; right: 1.5rem;
    z-index: 2;                       /* sit above the card's brass top-edge line */
    background: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
/* keep the featured card's top accent line clear of the badge */
.leist-card--featured::after { right: 7rem; }

.leist-list { display: flex; flex-direction: column; }
.leist-item {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.7rem 0.6rem;
    margin: 0 -0.6rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(237, 230, 220, 0.07);
    transition: background var(--t);
}
.leist-list .leist-item:last-child { border-bottom: none; }
@media (hover: hover) {
    .leist-item:hover { background: rgba(var(--color-accent-rgb), 0.07); }
}
.leist-item--star .leist-item__name { color: var(--color-heading); font-weight: 600; }
.leist-item__name { flex: 0 1 auto; color: var(--color-text); }
.leist-item__name em {
    display: block;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}
.leist-item__dots {
    flex: 1 1 auto;
    align-self: center;
    border-bottom: 1px dotted rgba(237, 230, 220, 0.22);
    min-width: 1.2rem;
    transform: translateY(-3px);
}
.leist-item__price {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-accent);
    background: rgba(var(--color-accent-rgb), 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
}
.leist-item--star .leist-item__price { background: var(--color-accent); color: var(--color-primary); }

.leistungen__cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

@media (max-width: 768px) {
    .leistungen__grid { grid-template-columns: 1fr; }
}

/* === GALERIE =============================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    grid-auto-rows: 240px;
    gap: 0.75rem;
}
.gallery-item--feature { grid-row: span 2; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--color-primary-rgb), 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 300ms ease;
}
@media (hover: hover) {
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item:hover::after { opacity: 1; }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .gallery-item--feature { grid-row: span 2; }
}

/* === TEAM ================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.team-card {
    position: relative;
    background: linear-gradient(160deg, rgba(47, 43, 38, 0.6) 0%, var(--color-bg) 100%);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
@media (hover: hover) {
    .team-card:hover {
        transform: translateY(-5px);
        border-color: rgba(var(--color-accent-rgb), 0.45);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35),
                    0 0 0 1px rgba(var(--color-accent-rgb), 0.12);
    }
}
.team-card__photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.team-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 600ms ease; }
/* scrim so the photo blends into the card body */
.team-card__photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg) 0%, rgba(var(--color-bg-rgb), 0.1) 22%, transparent 45%);
}
@media (hover: hover) { .team-card:hover .team-card__photo { transform: scale(1.05); } }

.team-card__body {
    position: relative;
    padding: 0 1.5rem 1.6rem;
    margin-top: -1.5rem;   /* lift body up over the scrim */
    z-index: 1;
}
.team-card__name { font-size: 1.35rem; margin-bottom: 0.6rem; }
.team-card__role {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.28);
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.team-card__bio { font-size: 0.95rem; line-height: 1.65; color: var(--color-text-muted); max-width: none; }

/* === CTA =================================================== */
.cta {
    position: relative;
    text-align: center;
    padding: clamp(5rem, 10vw, 9rem) 0;
    overflow: hidden;
    /* Brushed diagonal weave on the dark base — matches Leistungen */
    background-color: var(--color-primary);
    background-image: repeating-linear-gradient(
        135deg,
        rgba(237, 230, 220, 0.025) 0px,
        rgba(237, 230, 220, 0.025) 1px,
        transparent 1px,
        transparent 9px
    );
}
/* Warm brass glow rising from the bottom centre */
.cta::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    max-width: 120vw;
    background: radial-gradient(ellipse at center, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}
.cta::before {  /* film grain over the weave */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta__heading { color: #fff; }
.cta__sub {
    margin: 1.25rem auto 2.5rem;
    max-width: 540px;
    color: rgba(237, 230, 220, 0.72);
    font-size: clamp(1rem, 2vw, 1.2rem);
}
.cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .btn--ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
@media (hover: hover) {
    .cta .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }
}

/* === FOOTER ================================================ */
.footer {
    background: var(--color-primary);
    color: rgba(237, 230, 220, 0.78);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
    border-top: 1px solid var(--color-border);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--color-border);
}
.footer__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-heading);
}
.footer__logo span { color: var(--color-accent); }
.footer__tagline { margin-top: 0.9rem; color: var(--color-text-muted); font-size: 0.95rem; max-width: 38ch; }
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
}
.footer__col a { color: rgba(237, 230, 220, 0.72); font-size: 0.95rem; width: fit-content; }
@media (hover: hover) { .footer__col a:hover { color: var(--color-accent); } }
.footer__addr, .footer__hours { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 0.2rem; }

.footer__legal-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: rgba(237, 230, 220, 0.45);
}
.footer__legal-strip a,
.footer__legal-strip button {
    color: rgba(237, 230, 220, 0.45);
    background: none;
    border: none;
    padding: 0;
    min-height: unset;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    transition: color 200ms ease;
}
@media (hover: hover) {
    .footer__legal-strip a:hover,
    .footer__legal-strip button:hover { color: var(--color-accent); }
}
@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr; }
}

/* === SUBPAGE: PAGE HEADER ================================== */
.page-header {
    position: relative;
    padding: calc(var(--nav-height) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(2rem, 5vw, 3rem);
    background-color: var(--color-surface);
    background-image: repeating-linear-gradient(
        135deg,
        rgba(237, 230, 220, 0.022) 0px,
        rgba(237, 230, 220, 0.022) 1px,
        transparent 1px,
        transparent 9px
    );
    border-bottom: 1px solid var(--color-border);
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span[aria-hidden] { margin: 0 0.4rem; opacity: 0.5; }
.page-header h1 { margin-top: 1rem; font-size: clamp(2.6rem, 6vw, 4.5rem); }
.page-header__sub { margin-top: 1.25rem; color: var(--color-text-muted); font-size: 1.1rem; }

/* === KONTAKT =============================================== */
.kontakt__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(160deg, rgba(47, 43, 38, 0.6) 0%, var(--color-bg) 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
@media (hover: hover) {
    a.contact-card:hover {
        transform: translateY(-4px);
        border-color: rgba(var(--color-accent-rgb), 0.45);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }
}
.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
    color: var(--color-accent);
}
.contact-card__body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.contact-card__label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-heading);
    font-size: 1rem;
}
.contact-card__value { font-size: 0.9rem; color: var(--color-text-muted); }

.hours__title { font-size: 1.5rem; margin-bottom: 1rem; }
.hours__list { border-top: 1px solid var(--color-border); }
.hours__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(237, 230, 220, 0.08);
    font-size: 0.95rem;
}
.hours__row span:first-child { color: var(--color-text); }
.hours__row span:last-child { color: var(--color-text-muted); font-variant-numeric: tabular-nums; }
.hours__closed { color: rgba(var(--color-accent-rgb), 0.85) !important; }

/* Map 2-click */
.kontakt__map { position: relative; }
.map-placeholder {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    background-image:
        radial-gradient(circle at 30% 30%, rgba(var(--color-accent-rgb), 0.1) 0%, transparent 50%),
        repeating-linear-gradient(135deg, rgba(237, 230, 220, 0.025) 0px, rgba(237, 230, 220, 0.025) 1px, transparent 1px, transparent 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder.is-loaded { background: none; border: 1px solid var(--color-border); }
.map-placeholder__content {
    text-align: center;
    max-width: 360px;
    padding: 2rem;
    color: var(--color-accent);
}
.map-placeholder__text {
    margin: 1rem auto 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.map-placeholder__text a { color: var(--color-accent); text-decoration: underline; }

@media (max-width: 900px) {
    .kontakt__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .contact-cards { grid-template-columns: 1fr; }
}

/* === LEGAL PAGES =========================================== */
.legal__content { max-width: 820px; }
.legal__content h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 2.75rem 0 1rem;
    color: var(--color-heading);
}
.legal__content h2:first-child { margin-top: 0; }
.legal__content h3 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; color: var(--color-heading); }
.legal__content p,
.legal__content li { color: var(--color-text-muted); margin-bottom: 0.9rem; max-width: 70ch; }
.legal__content strong { color: var(--color-text); }
.legal__content a { color: var(--color-accent); text-decoration: underline; }
.legal__content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.legal__content ul li { margin-bottom: 0.4rem; }

.legal__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.75rem;
    font-size: 0.9rem;
}
.legal__content th,
.legal__content td {
    text-align: left;
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    vertical-align: top;
}
.legal__content th {
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-weight: 600;
    background: rgba(var(--color-accent-rgb), 0.06);
}

.legal__note {
    background: rgba(var(--color-accent-rgb), 0.08);
    border-left: 3px solid var(--color-accent);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.75rem 0;
    font-size: 0.9rem;
}
.legal__note p { color: var(--color-text); margin: 0; }
.legal__updated { margin-top: 2.5rem; color: var(--color-text-muted); font-size: 0.85rem; }
.legal__settings-btn { margin: 0.5rem 0 1.5rem; }
