/* ============================================================
   Holistyczna Przystań – arkusz stylów
   Paleta: szałwiowa zieleń, ciepły beż, głęboka zieleń.
   ============================================================ */

:root {
    --sage:       #8ba888;
    --sage-dark:  #5f7c5c;
    --deep:       #3c4a3a;
    --cream:      #f6f2ea;
    --cream-2:    #efe8db;
    --sand:       #e7dcc8;
    --ink:        #2e3330;
    --muted:      #6d746b;
    --white:      #ffffff;
    --gold:       #c2a86a;

    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius: 14px;
    --shadow: 0 12px 34px rgba(60, 74, 58, .12);
    --shadow-sm: 0 6px 18px rgba(60, 74, 58, .08);
    --maxw: 1140px;
    --transition: .25s ease;
}

/* --- Reset / bazowe --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--deep); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--deep); margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.center-narrow { max-width: 640px; margin-left: auto; margin-right: auto; }
.mt { margin-top: 2rem; }
.muted { color: var(--muted); font-size: .95rem; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .78rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: .6rem;
}
.eyebrow.center { text-align: center; }

.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--deep); color: #fff; padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --- Przyciski --- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: .04em;
    padding: 14px 30px;
    border-radius: 40px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    font-size: .95rem;
}
.btn-primary { background: var(--sage-dark); color: #fff; }
.btn-primary:hover { background: var(--deep); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--sage-dark); color: var(--sage-dark); }
.btn-outline:hover { background: var(--sage-dark); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--deep); border-color: rgba(60,74,58,.2); }
.btn-ghost:hover { background: #fff; }
.btn-light { background: #fff; color: var(--deep); }
.btn-light:hover { background: var(--cream-2); transform: translateY(-2px); }

/* --- Nagłówek --- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(246, 242, 234, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(60,74,58,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { font-size: 1.8rem; color: var(--sage); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--deep); }
.brand-tag { font-size: .72rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.site-nav a { padding: 8px 14px; border-radius: 30px; color: var(--ink); font-size: .95rem; font-weight: 400; }
.site-nav a:hover { color: var(--deep); background: rgba(139,168,136,.16); }
.site-nav a.active { color: var(--sage-dark); font-weight: 500; }
.nav-cta { background: var(--sage-dark); color: #fff !important; }
.nav-cta:hover { background: var(--deep); }

.nav-toggle, .nav-burger { display: none; }

/* --- Sekcje --- */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-2); }

/* --- Hero --- */
.hero {
    background:
        radial-gradient(120% 120% at 80% 0%, rgba(139,168,136,.35), transparent 55%),
        linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
    padding: 110px 0 96px;
}
.hero-inner { max-width: 760px; }
.hero-text h1 { margin-bottom: .3em; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

/* --- Karty wartości --- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.value-card, .service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(60,74,58,.05);
    transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover, .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; display: block; margin-bottom: .5rem; }
.value-card h3, .service-card h3 { color: var(--deep); }
.value-card p, .service-card p { color: var(--muted); margin: 0; }

/* --- Sekcja O mnie --- */
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-media {
    min-height: 340px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(139,168,136,.55), rgba(95,124,92,.55)),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.about-media::after {
    content: "❀";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; color: rgba(255,255,255,.55);
}
.about-media.tall { min-height: 440px; }
.about-copy h2 { margin-bottom: .6em; }

/* --- Usługi: proces / kroki --- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step; }
.steps li { background: var(--white); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--sage); color: #fff; font-family: var(--serif);
    font-size: 1.4rem; font-weight: 600; margin-bottom: .8rem;
}
.steps h3 { color: var(--deep); }
.steps p { color: var(--muted); margin: 0; }

/* --- Pasek CTA --- */
.cta-band {
    background: linear-gradient(135deg, var(--sage-dark), var(--deep));
    color: #fff; text-align: center; padding: 76px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 55ch; margin: 0 auto 1.8rem; }

/* --- Nagłówek podstron --- */
.page-hero {
    background: linear-gradient(160deg, var(--cream-2), var(--sand));
    padding: 78px 0 64px; text-align: center;
}
.page-hero.small { padding: 60px 0 44px; }
.page-hero .lead { margin-top: 1rem; }

/* --- Kontakt --- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid rgba(60,74,58,.1); display: flex; flex-direction: column; }
.ci-label { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--sage-dark); margin-bottom: 3px; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; margin-bottom: 6px; color: var(--deep); }
.field input, .field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid rgba(60,74,58,.2);
    border-radius: 10px; font-family: var(--sans); font-size: 1rem; background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(139,168,136,.25); background: #fff;
}
.field-check label { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.field-check input { width: auto; margin-top: 4px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: .95rem; }
.alert ul { margin: 0; padding-left: 18px; }
.alert-success { background: #e4efe0; color: #35502f; border: 1px solid #b9d4b0; }
.alert-error { background: #f6e2e0; color: #7a2f2a; border: 1px solid #e0b6b1; }

/* --- Strony prawne --- */
.legal { max-width: 820px; }
.legal h2 { margin-top: 2.2rem; font-size: 1.5rem; }
.legal ul, .legal ol { padding-left: 1.3rem; }
.legal li { margin-bottom: .5rem; }

/* --- Stopka --- */
.site-footer { background: var(--deep); color: rgba(255,255,255,.8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 64px 24px 40px; }
.footer-col h3 { color: #fff; font-size: 1.1rem; margin-bottom: .8rem; }
.footer-col .brand-name { color: #fff; font-size: 1.4rem; }
.footer-col p, .footer-col .muted { color: rgba(255,255,255,.7); }
.footer-col a { color: rgba(255,255,255,.85); }
.footer-col a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; }
.footer-bar p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ============================================================
   Responsywność
   ============================================================ */
@media (max-width: 900px) {
    .grid-3, .steps { grid-template-columns: 1fr 1fr; }
    .about-inner, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
    .about-media { min-height: 260px; }

    .nav-burger {
        display: flex; flex-direction: column; gap: 5px; cursor: pointer;
        padding: 8px; z-index: 120;
    }
    .nav-burger span { width: 26px; height: 2px; background: var(--deep); transition: var(--transition); }
    .site-nav {
        position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
        background: var(--cream); box-shadow: var(--shadow);
        transform: translateX(100%); transition: transform var(--transition);
        padding: 90px 26px 26px;
    }
    .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .site-nav a { display: block; padding: 12px 16px; }
    .nav-toggle:checked ~ .site-nav { transform: translateX(0); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
    .grid-3, .steps { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .hero { padding: 80px 0 64px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .contact-form-wrap { padding: 26px; }
}

/* Sprachumschalter DE/EN/PL */
.lang-switch{display:inline-flex;align-items:center;gap:1px;border:1px solid rgba(0,0,0,.14);border-radius:999px;padding:2px;background:rgba(255,255,255,.65);vertical-align:middle}
.lang-switch a{font-size:.72rem;font-weight:700;letter-spacing:.02em;color:inherit;opacity:.6;padding:.22rem .46rem;border-radius:999px;line-height:1;text-decoration:none}
.lang-switch a:hover{opacity:1}
.lang-switch a.active{background:currentColor;opacity:1}
.lang-switch a.active{color:#fff !important;background:#333}
