/* ══════════════════════════════════════════════
   PRZEPŁYW — Psychoterapia CBT
   Organic · Flowing · Text-integrated
   ══════════════════════════════════════════════ */

:root {
    --bg:       #131110;
    --bg-alt:   #1a1816;
    --bg-card:  #1e1c1a;
    --text:     #e8e2d8;
    --text-sec: #8a8279;
    --accent:   #b8956a;
    --accent-l: #cdaa7e;
    --cream:    #f2ece2;
    --radius:   6px;
    --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: rgba(184,149,106,0.25); color: var(--text); }
button { font: inherit; }

/* ─── CONTAINERS ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.container--narrow { max-width: 720px; }
.container--wide   { max-width: 1380px; }

/* ─── TYPOGRAPHY ─── */
.serif {
    font-family: 'Playfair Display', Georgia, serif;
}

.display {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--text);
}
.display em { font-style: italic; color: var(--accent); }

.h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
}
.h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    font-weight: 400;
    line-height: 1.2;
}
.h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
}

.label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.body    { font-size: 1rem; color: var(--text-sec); line-height: 1.8; }
.body-lg { font-size: 1.08rem; color: var(--text-sec); line-height: 1.8; }
.body-sm { font-size: 0.85rem; color: var(--text-sec); line-height: 1.7; }
.body strong, .body-lg strong, .body-sm strong { color: var(--text); font-weight: 500; }
.body a, .body-lg a, .body-sm a {
    color: var(--accent);
    border-bottom: 1px solid rgba(184,149,106,0.25);
    transition: border-color 0.3s;
}
.body a:hover, .body-lg a:hover, .body-sm a:hover { border-color: var(--accent); }

.accent-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 1.25rem;
}
.accent-line--center { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 68px;
    z-index: 100;
    background: rgba(19,17,16,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184,149,106,0.04);
    transition: all 0.5s var(--ease);
}
.header--scrolled {
    height: 56px;
    background: rgba(19,17,16,0.92);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    z-index: 101;
}
.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-img {
    display: block;
    height: 44px;
    width: auto;
    filter: brightness(1.15);
    transition: filter 0.3s;
}
.logo:hover .logo-img {
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(184,149,106,0.45));
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.logo-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.12em;
    line-height: 1.25;
    white-space: nowrap;
}
.logo-line {
    width: 22px;
    height: 2px;
    background: var(--accent);
    opacity: 0.5;
    transition: width 0.3s, opacity 0.3s;
}
.logo:hover .logo-line {
    width: 30px;
    opacity: 0.7;
}
.logo-sub {
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-sec);
    opacity: 0.85;
    white-space: nowrap;
}

.nav { display: flex; gap: 1.75rem; align-items: center; }
.nav a {
    font-size: 0.62rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-sec);
    transition: color 0.3s;
    position: relative;
    padding: 0.25rem 0;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--text); }
.nav a.active::after { width: 100%; }

.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 20px; height: 14px;
    flex-direction: column; justify-content: space-between;
    z-index: 103; padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 1.5px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

.overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: none; opacity: 0;
    transition: opacity 0.4s;
    z-index: 102;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem;
}
.overlay.open { opacity: 1; pointer-events: all; }
.overlay a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--text-sec);
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s, color 0.3s;
}
.overlay.open a { opacity: 1; transform: translateY(0); }
.overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.overlay.open a:nth-child(4) { transition-delay: 0.2s; }
.overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.overlay.open a:nth-child(6) { transition-delay: 0.3s; }
.overlay.open a:nth-child(7) { transition-delay: 0.35s; }
.overlay.open a:nth-child(8) { transition-delay: 0.4s; }
.overlay a:hover { color: var(--text); }
.overlay a.active { color: var(--accent); }

/* ══════════════════════════════════════════════
   SLIDER — Homepage hero crossfade
   ══════════════════════════════════════════════ */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}
.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 1;
}
.slider-slide.active { opacity: 1; z-index: 2; }

.slider-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.35) saturate(0.6);
    transform: scale(1.08);
    transition: transform 12s ease-out;
}
.slider-slide.active .slider-img {
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(19,17,16,0.3) 0%,
        rgba(19,17,16,0.1) 40%,
        rgba(19,17,16,0.5) 80%,
        rgba(19,17,16,0.85) 100%
    );
    z-index: 1;
}

.slider-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.slider-label {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.slider-slide.active .slider-label {
    opacity: 1; transform: translateY(0);
}

.slider-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--cream);
    max-width: 780px;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.slider-slide.active .slider-title {
    opacity: 1; transform: translateY(0);
}
.slider-title em { font-style: italic; color: var(--accent-l); }

.slider-sub {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 400;
    color: var(--text-sec);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}
.slider-slide.active .slider-sub {
    opacity: 1; transform: translateY(0);
}

.slider-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    border: 1px solid rgba(184,149,106,0.3);
    padding: 0.9rem 2.25rem;
    transition: all 0.35s var(--ease);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s, background 0.35s, color 0.35s, border-color 0.35s;
}
.slider-slide.active .slider-cta {
    opacity: 1; transform: translateY(0);
}
.slider-cta:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.6rem;
}
.slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(184,149,106,0.25);
    border: none; cursor: pointer;
    transition: all 0.4s;
    padding: 0;
}
.slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.slider-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.slider-scroll-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: gentlePulse 2.8s ease-in-out infinite;
}
@keyframes gentlePulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* ══════════════════════════════════════════════
   PAGE HERO (subpages)
   ══════════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 140px 0 4.5rem;
    min-height: 340px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.3) saturate(0.5);
}
.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,17,16,0.5) 0%, rgba(19,17,16,0.85) 100%);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; max-width: 620px; }
.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 4.5vw, 2.7rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.7;
    max-width: 420px;
}

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
.section { padding: 6.5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--tall { padding: 8rem 0; }

.section-intro {
    max-width: 620px;
    margin: 0 auto 4rem;
    text-align: center;
}
.section-intro .label { margin-bottom: 0.65rem; }
.section-intro .h2 { margin-bottom: 1rem; }
.section-intro .body { max-width: 480px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   FLOW — Main editorial layout
   ══════════════════════════════════════════════ */
.flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}
.flow--stretch { align-items: stretch; }
.flow--reverse { direction: rtl; }
.flow--reverse > * { direction: ltr; }

.flow-text .body { margin-bottom: 1rem; }
.flow-text .body:last-child { margin-bottom: 0; }

.flow-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    display: flex;
    align-items: stretch;
}
.flow--stretch .flow-visual {
    height: 100%;
}
.flow-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    filter: saturate(0.6) brightness(0.85);
    transition: filter 0.6s, transform 0.8s var(--ease);
}
.flow-visual:hover img {
    filter: saturate(0.8) brightness(0.95);
    transform: scale(1.02);
}

/* ══════════════════════════════════════════════
   MOSAIC — Card grid for services
   ══════════════════════════════════════════════ */
.mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.mosaic-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(184,149,106,0.05);
    transition: border-color 0.4s, box-shadow 0.4s;
}
.mosaic-item:hover {
    border-color: rgba(184,149,106,0.12);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.mosaic-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(0.5) brightness(0.7);
    transition: filter 0.5s, transform 0.6s var(--ease);
}
.mosaic-item:hover .mosaic-img {
    filter: saturate(0.7) brightness(0.8);
    transform: scale(1.03);
}
.mosaic-body { padding: 1.75rem; }
.mosaic-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(184,149,106,0.2);
    margin-bottom: 0.5rem;
}
.mosaic-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.mosaic-desc {
    font-size: 0.92rem;
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.mosaic-link {
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    transition: opacity 0.3s;
}
.mosaic-link:hover { opacity: 0.6; }

/* ══════════════════════════════════════════════
   INLINE — Text with floating image
   ══════════════════════════════════════════════ */
.inline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}
.inline-content--right .inline-text { order: 2; }
.inline-content--right .inline-visual { order: 1; }

.inline-visual {
    position: sticky;
    top: 100px;
    border-radius: var(--radius);
    overflow: hidden;
}
.inline-visual img {
    width: 100%;
    border-radius: var(--radius);
    filter: saturate(0.55) brightness(0.82);
}

/* ══════════════════════════════════════════════
   PULLQUOTE — Floating quote
   ══════════════════════════════════════════════ */
.pullquote {
    position: relative;
    padding: 4.5rem 0;
    text-align: center;
    background: var(--bg-alt);
    overflow: hidden;
}
.pullquote::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 7rem;
    color: rgba(184,149,106,0.04);
    line-height: 1;
}
.pullquote blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: var(--text);
    max-width: 580px;
    margin: 0 auto;
}
.pullquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    font-style: normal;
}

/* ══════════════════════════════════════════════
   STEPS — Process
   ══════════════════════════════════════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.step { text-align: center; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    color: var(--accent);
    border: 1px solid rgba(184,149,106,0.15);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.35s;
}
.step:hover .step-num {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}
.step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.step-text {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 0.95rem 2.5rem;
    border: 1px solid transparent;
    transition: all 0.35s var(--ease);
    gap: 0.5rem;
}
.btn--primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-l);
    border-color: var(--accent-l);
}
.btn--ghost {
    background: transparent;
    color: var(--accent);
    border-color: rgba(184,149,106,0.25);
}
.btn--ghost:hover {
    background: rgba(184,149,106,0.08);
    color: var(--text);
    border-color: rgba(184,149,106,0.4);
}

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta {
    text-align: center;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/terapia_tlo.jpg') center/cover;
    opacity: 0.04;
    filter: saturate(0.3);
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 0.6rem;
}
.cta p {
    font-size: 1rem;
    color: var(--text-sec);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 0.7rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), rgba(184,149,106,0.05));
}
.timeline-item {
    position: relative;
    padding-bottom: 2.25rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -1.05rem;
    top: 0.3rem;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--accent);
}
.timeline-year {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.2rem;
}
.timeline-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.1rem;
}
.timeline-meta {
    display: block;
    font-size: 0.68rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
}
.timeline-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-sec);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing {
    background: var(--bg-card);
    border: 1px solid rgba(184,149,106,0.05);
    border-radius: var(--radius);
    padding: 2rem;
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(184,149,106,0.04);
    gap: 1rem;
}
.pricing-row:last-child { border: none; }
.pricing-name { font-size: 0.95rem; color: var(--text-sec); }
.pricing-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text);
}
.pricing-cur { font-size: 0.72rem; color: var(--accent); }

/* ══════════════════════════════════════════════
   INFO CARD
   ══════════════════════════════════════════════ */
.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(184,149,106,0.05);
    border-radius: var(--radius);
    padding: 1.4rem;
    margin-bottom: 0.85rem;
}
.info-card strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

/* ══════════════════════════════════════════════
   CONTACT CARDS
   ══════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(184,149,106,0.05);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s;
}
.contact-card:hover {
    border-color: rgba(184,149,106,0.12);
    background: var(--bg-alt);
}
.contact-icon {
    width: 38px; height: 38px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184,149,106,0.15);
    border-radius: 50%;
}
.contact-card-label {
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 0.35rem;
}
.contact-card-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--text);
}
.contact-card-note {
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 0.35rem;
}

/* ══════════════════════════════════════════════
   MAP WRAP
   ══════════════════════════════════════════════ */
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(184,149,106,0.05);
}
.map-wrap iframe { display: block; }

/* ══════════════════════════════════════════════
   CRISIS
   ══════════════════════════════════════════════ */
.crisis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.crisis-card {
    background: var(--bg-card);
    border: 1px solid rgba(184,149,106,0.05);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.3s;
}
.crisis-card:hover { border-color: rgba(184,149,106,0.12); }
.crisis-name { font-size: 0.75rem; color: var(--text-sec); line-height: 1.5; }
.crisis-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text);
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(184,149,106,0.05);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.3rem 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
    padding: 0 0 1.3rem;
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.85;
}
.faq-answer a {
    color: var(--accent);
    border-bottom: 1px solid rgba(184,149,106,0.25);
}
.faq-answer a:hover { border-bottom-color: var(--accent); }

/* ══════════════════════════════════════════════
   OFFER LIST
   ══════════════════════════════════════════════ */
.offer-list { list-style: none; padding: 0; margin: 0; }
.offer-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.2rem;
    font-size: 0.92rem;
    color: var(--text-sec);
    line-height: 1.75;
}
.offer-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.85rem;
    width: 4px; height: 1px;
    background: var(--accent);
}

/* ══════════════════════════════════════════════
   CONDITION GROUPS
   ══════════════════════════════════════════════ */
.condition-group {
    margin-bottom: 2.5rem;
}
.condition-group:last-child { margin-bottom: 0; }
.condition-group-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(184,149,106,0.06);
}
.condition-group-text {
    font-size: 0.92rem;
    color: var(--text-sec);
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

/* ══════════════════════════════════════════════
   LEGAL CONTENT
   ══════════════════════════════════════════════ */
.legal-content { max-width: 720px; margin: 0 auto; padding: 2rem 0; }
.legal-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem; font-weight: 400;
    color: var(--text); margin: 2.5rem 0 0.6rem;
}
.legal-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem; font-weight: 400;
    color: var(--text); margin: 1.8rem 0 0.4rem;
}
.legal-content p { margin-bottom: 0.75rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.35rem; font-size: 0.92rem; color: var(--text-sec); line-height: 1.75; }
.legal-content strong { color: var(--text); }
.legal-content a {
    color: var(--accent);
    border-bottom: 1px solid rgba(184,149,106,0.25);
}
.legal-content a:hover { border-bottom-color: var(--accent); }

/* ══════════════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════════════ */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 0;
}
.divider-line { width: 28px; height: 1px; background: rgba(184,149,106,0.12); }
.divider-icon { font-size: 0.25rem; color: var(--accent); }

/* ══════════════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════════════ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--accent);
    text-align: center;
    padding: 0.85rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-cta a {
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
    background: #0e0d0c;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(184,149,106,0.04);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer .logo-img { opacity: 0.85; }
.footer .logo-name { color: rgba(232,226,216,0.55); }
.footer .logo-line { background: rgba(184,149,106,0.4); }
.footer .logo-sub { color: rgba(138,130,121,0.6); }
.footer-desc {
    font-size: 0.78rem;
    color: rgba(232,226,216,0.15);
    margin-top: 0.5rem;
    line-height: 1.6;
}
.footer-nav-title {
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(184,149,106,0.25);
    margin-bottom: 0.6rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(232,226,216,0.25);
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact { font-size: 0.88rem; color: rgba(232,226,216,0.2); line-height: 1.7; }
.footer-contact a { color: rgba(232,226,216,0.3); transition: color 0.3s; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(232,226,216,0.03);
    font-size: 0.7rem;
    color: rgba(232,226,216,0.12);
}
.footer-bottom a {
    color: rgba(232,226,216,0.25);
    transition: color 0.3s;
    text-decoration: underline;
    text-decoration-color: rgba(232,226,216,0.05);
    text-underline-offset: 3px;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-credit {
    font-size: 0.65rem;
    color: rgba(232,226,216,0.09);
}
.footer-credit a {
    color: rgba(232,226,216,0.18);
    text-decoration: none;
}
.footer-credit a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1000;
    background: rgba(19,17,16,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(184,149,106,0.2);
    padding: 0.9rem 0;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.45);
    transition: transform 0.4s var(--ease), opacity 0.4s;
}
.cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner-text {
    font-size: 0.8rem;
    color: rgba(232,226,216,0.55);
    line-height: 1.5;
    max-width: 720px;
}
.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(184,149,106,0.4);
    background: none;
    color: rgba(232,226,216,0.7);
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-btn:hover { border-color: var(--accent); color: var(--text); }
.cookie-btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #131110;
}
.cookie-btn--primary:hover { background: #d4b27e; color: #131110; }

/* ══════════════════════════════════════════════
   FOCUS VISIBLE
   ══════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .slider-slide { transition: none; }
    .slider-slide.active .slider-label,
    .slider-slide.active .slider-title,
    .slider-slide.active .slider-sub,
    .slider-slide.active .slider-cta {
        opacity: 1; transform: none;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .flow { grid-template-columns: 1fr; gap: 2.5rem; }
    .flow--reverse { direction: ltr; }
    .inline-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .inline-content--right .inline-text { order: 1; }
    .inline-content--right .inline-visual { order: 2; position: static; }
    .inline-visual { position: static; }
    .mosaic { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .crisis-grid { grid-template-columns: 1fr; max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .header { height: 56px; }
    .header--scrolled { height: 48px; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .overlay { gap: 1.8rem; }
    .overlay a { font-size: 1.3rem; }

    .slider-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
    .slider-cta { width: 100%; max-width: 280px; justify-content: center; }

    .section { padding: 4.5rem 0; }
    .section--tall { padding: 5.5rem 0; }
    .section-intro { margin-bottom: 3rem; }

    .page-hero { padding: 95px 0 3rem; min-height: 280px; }
    .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    .cta { padding: 4rem 0 4.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer { padding: 2.5rem 0 5.5rem; }
    .sticky-cta { display: block; }

    .pullquote { padding: 3.5rem 0; }
    .pullquote::before { font-size: 5rem; }

    .faq-item summary { font-size: 1rem; }

    .contact-map-wrap { margin: 0 -1.5rem; }
    .contact-map-wrap iframe { width: 100%; height: 300px; }
}

@media (max-width: 480px) {
    .logo-line, .logo-sub { display: none; }
    .overlay a { font-size: 1.15rem; }
    .slider-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .slider-sub { font-size: 0.9rem; }

    .page-hero { padding: 76px 0 2rem; min-height: 240px; }
    .page-hero h1 { font-size: clamp(1.3rem, 8vw, 1.8rem); }
    .page-hero p { font-size: 0.88rem; }

    .section { padding: 3.5rem 0; }
    .section--tall { padding: 4.5rem 0; }
    .body { font-size: 0.92rem; }
    .body-lg { font-size: 1rem; }

    .timeline { padding-left: 1.5rem; }
    .timeline-dot { left: -0.8rem; }
    .timeline::before { left: 0.3rem; }

    .pricing { padding: 1.5rem; }

    .footer { padding: 2rem 0 5.5rem; }
    .footer-desc { font-size: 0.72rem; }
    .footer-nav a { font-size: 0.8rem; }
    .footer-contact { font-size: 0.8rem; }
    .footer-bottom { font-size: 0.65rem; gap: 0.1rem 0.7rem; }
}