/* Atelier Eliza Gawot, demo (ekspres). Ciemna paleta z ulotki: czerń + złoto,
   panel w kości słoniowej dla trychologii (jak biała część ulotki), zaokrąglone kafelki. */

:root {
  --gold: #C8A15A;
  --gold-soft: #E3C98F;
  --gold-dim: #8C6F3A;
  --ink: #060606;
  --ink-2: #0E0E0E;
  --surface: #161616;
  --line: rgba(255, 255, 255, .10);
  --ivory: #F3EEE4;
  --ivory-2: #E9E2D3;
  --ink-on-ivory: #1A1815;
  --muted-on-ivory: #5E5850;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-text: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --r-card: 22px;
  --r-img: 18px;
  --r-btn: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-body);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0 0 .5em; color: var(--text-strong); letter-spacing: -.005em; }
h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #111; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.center { text-align: center; }
.kicker {
  font-family: var(--font-text);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.lead { font-size: 1.08rem; color: var(--text-body); max-width: 60ch; }
.note { font-size: .9rem; color: var(--text-muted); }
.stars { color: var(--gold); letter-spacing: .08em; }
.link-gold { color: var(--gold); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .18s var(--ease); }
.link-gold::after { content: " →"; }
.link-gold:hover { border-color: var(--gold); }
.tel-link { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-soft); font-weight: 600; font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.tel-link:hover { color: var(--gold); }

/* Preloader: logo wypełnia się od lewej, pod nim złoty pasek. Bezpiecznik w JS (max 2,4 s). */
#preloader { position: fixed; inset: 0; z-index: 9999; background: radial-gradient(80% 80% at 50% 40%, #171512 0%, #060606 70%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; transition: opacity .6s ease, visibility .6s ease; }
#preloader.done { opacity: 0; visibility: hidden; }
.loader-logo { position: relative; width: min(260px, 60vw); aspect-ratio: 524 / 342; animation: loaderIn .7s var(--ease) both; }
.loader-logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.loader-logo .ghost { opacity: .18; }
.loader-logo .fill { clip-path: inset(0 100% 0 0); transition: clip-path .25s ease-out; }
.loader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.12); border-radius: 99px; overflow: hidden; animation: loaderIn .7s var(--ease) .1s both; }
.loader-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dim), var(--gold-soft)); border-radius: 99px; transition: width .25s ease-out; }
@keyframes loaderIn { from { opacity: 0; transform: translateY(14px) scale(.94); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { #preloader { display: none; } }

/* Przyciski */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 26px;
  border-radius: var(--r-btn);
  font-weight: 600; font-size: .95rem; letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-dark { background: var(--ink); color: var(--gold-soft); border-color: var(--ink); }
.btn-dark:hover { background: #222; }
.btn-sm { min-height: 44px; padding: 8px 18px; font-size: .85rem; }
.btn-tel { font-variant-numeric: tabular-nums; }

/* Nagłówek: duże logo, po prawej sociale, telefon, Booksy i hamburger (na każdej szerokości) */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(6, 6, 6, .74);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 16px; }
.logo-link img { width: auto; height: 68px; }
.header-right { display: flex; align-items: center; gap: 14px; }
.header-social { display: none; gap: 6px; }
.header-social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: #E9E9E9; transition: border-color .18s, color .18s; }
.header-social a:hover { border-color: var(--gold); color: var(--gold); }
.header-tel { display: none; align-items: center; gap: 8px; color: var(--gold-soft); font-weight: 600; font-variant-numeric: tabular-nums; padding: 0 6px; }
.header-tel:hover { color: var(--gold); }
.header-cta { display: none; }
.menu-btn {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 50px; height: 50px; padding: 0 12px;
  background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  transition: border-color .18s;
}
.menu-btn:hover { border-color: var(--gold-dim); }
.menu-btn span { display: block; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .22s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 480px) { .header-cta { display: inline-flex; } }
@media (min-width: 768px) { .header-social { display: inline-flex; } .logo-link img { height: 84px; } .header-row { min-height: 104px; } }
@media (min-width: 1024px) { .header-tel { display: inline-flex; } .logo-link img { height: 92px; } .header-row { min-height: 112px; } }

/* Menu pełnoekranowe */
.menu-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: radial-gradient(70% 60% at 80% 20%, #1A1610 0%, #060606 60%);
  display: none;
  overflow-y: auto;
  padding: 130px 0 60px;
}
.menu-overlay.open { display: block; }
.menu-inner { display: grid; gap: 40px; }
.menu-links li { border-bottom: 1px solid var(--line); }
.menu-links a { display: block; padding: 16px 0; font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; line-height: 1.1; transition: color .18s, padding-left .2s var(--ease); }
.menu-links a:hover { color: var(--gold); padding-left: 10px; }
.menu-aside { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.menu-aside .kicker { margin: 10px 0 0; }
.menu-social { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.menu-social a { color: #E9E9E9; border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; }
.menu-social a:hover { color: var(--gold); border-color: var(--gold); }
.menu-address { color: var(--text-muted); font-size: .95rem; margin-top: 8px; }
@media (min-width: 900px) { .menu-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; } .menu-overlay { padding-top: 160px; } }

/* Hero */
.hero {
  position: relative; min-height: 92vh; min-height: 92svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% 30%; z-index: -2; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,6,6,.55) 0%, rgba(6,6,6,.10) 30%, rgba(6,6,6,.35) 60%, rgba(6,6,6,.96) 100%),
    linear-gradient(90deg, rgba(6,6,6,.78) 0%, rgba(6,6,6,.45) 45%, rgba(6,6,6,.05) 100%);
}
.hero-content { padding: 140px 0 110px; max-width: 720px; margin-left: max(20px, (100% - var(--container)) / 2); }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.45); margin-bottom: 30px; }
.hero .kicker { text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta .btn { min-height: 56px; padding: 12px 30px; font-size: 1rem; }

@media (max-width: 767px) {
  /* Telefon: zdjęcie zajmuje górne ~64svh, tekst zaczyna się pod twarzą i wjeżdża na ciemniejący dół zdjęcia. */
  .hero { min-height: 100svh; align-items: flex-start; }
  .hero-media { bottom: auto; height: 64svh; }
  .hero-media img { object-position: 50% 0%; }
  .hero-content { padding: 56svh 0 96px; }
  .hero-shade { background: linear-gradient(180deg, rgba(6,6,6,.45) 0%, rgba(6,6,6,0) 14%, rgba(6,6,6,0) 36%, rgba(6,6,6,.82) 54%, #060606 64%, #060606 100%); }
  .hero-cta .btn { width: 100%; }
}

/* Pasek marquee */
.fx-marquee { overflow: hidden; border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); background: var(--ink-2); padding: 14px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--gold-soft); padding: 0 28px; white-space: nowrap; position: relative; }
.marquee-track span::after { content: "✦"; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); font-size: .7rem; font-style: normal; color: var(--gold-dim); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* Sekcje (scroll-margin: kotwice z menu lądują pod przyklejonym nagłówkiem, nie pod nim) */
.section { padding: clamp(64px, 9vw, 112px) 0; scroll-margin-top: 84px; }
@media (min-width: 768px) { .section { scroll-margin-top: 104px; } }
@media (min-width: 1024px) { .section { scroll-margin-top: 112px; } }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .lead { margin-bottom: 0; }

/* Trychologia: ciemna sekcja, w niej panel w kości słoniowej (jak biała część ulotki) */
.section-tricho { background: var(--ink); padding-top: clamp(48px, 7vw, 88px); }
.tricho-panel { background: var(--ivory); color: var(--ink-on-ivory); border-radius: 32px; padding: clamp(28px, 5vw, 64px); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.tricho-panel h2, .tricho-panel h3 { color: var(--ink-on-ivory); }
.tricho-panel .kicker { color: var(--gold-dim); }
.tricho-panel .lead { color: #3C3731; }
.tricho-top { display: grid; gap: 36px; align-items: start; margin-bottom: clamp(40px, 6vw, 72px); }
.steps { margin: 26px 0 30px; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(26,24,21,.14); }
.steps li:last-child { border-bottom: 1px solid rgba(26,24,21,.14); }
.step-num { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--gold-dim); padding-top: 2px; }
.steps h3 { font-size: 1.4rem; margin-bottom: 4px; display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline; }
.steps h3 b { font-family: var(--font-text); font-size: .95rem; font-weight: 600; color: var(--ink-on-ivory); background: rgba(200,161,90,.28); border-radius: 999px; padding: 3px 12px; }
.steps p { margin: 0; color: #3C3731; font-size: .97rem; }
.tricho-visual { position: relative; }
.tricho-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-img); }
.tech-card { background: var(--ink); color: #E9E9E9; border-radius: var(--r-card); padding: 22px 22px 18px; margin-top: 16px; }
.tech-title { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.tech-sub { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 12px 0 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span { border: 1px solid rgba(200,161,90,.45); color: #E9E9E9; border-radius: 999px; padding: 4px 11px; font-size: .82rem; }
@media (min-width: 900px) {
  .tricho-top { grid-template-columns: 1.05fr 1fr; gap: 56px; }
  .tricho-visual { padding-bottom: 120px; }
  .tricho-visual img { aspect-ratio: 4 / 5; }
  .tech-card { position: absolute; left: -32px; bottom: 0; max-width: 360px; margin: 0; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
}

.packages-head { max-width: 700px; margin-bottom: 26px; }
.packages-head p { color: #3C3731; margin: 0; }
.packages-grid { display: grid; gap: 18px; }
.pkg { background: #fff; border: 1px solid rgba(26,24,21,.10); padding: 30px 28px; border-radius: var(--r-card); display: flex; flex-direction: column; }
.pkg-featured { background: var(--ink); border-color: var(--ink); color: #E9E9E9; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.pkg-name { font-family: var(--font-text); font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.pkg-featured .pkg-name { color: var(--gold); }
.pkg-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; line-height: 1; color: var(--ink-on-ivory); margin-bottom: 14px; }
.pkg-featured .pkg-price { color: #fff; }
.pkg-price small { font-family: var(--font-text); font-size: .85rem; font-weight: 500; margin-left: 6px; color: var(--muted-on-ivory); }
.pkg-featured .pkg-price small { color: #BDBDBD; }
.pkg-desc { color: #3C3731; font-size: .95rem; flex: 1; }
.pkg-featured .pkg-desc { color: #D6D6D6; }
.pkg-tiers li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid rgba(26,24,21,.12); font-size: .95rem; }
.pkg-featured .pkg-tiers li { border-color: rgba(255,255,255,.14); }
.pkg-tiers b { font-weight: 600; }
@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

/* Listy cen */
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.price-list span { color: var(--text-body); }
.price-list b { font-weight: 600; color: var(--gold-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Usługi */
.services-grid { display: grid; gap: 22px; }
.service { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.service:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.service img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.92); }
.service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.service-body h3 { margin-bottom: 4px; }
.service-body p { color: var(--text-body); font-size: .96rem; flex: 1; }
.service-tricho { border-color: var(--gold-dim); }
.service-tricho .service-body { background: linear-gradient(180deg, rgba(200,161,90,.06), transparent); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cennik */
.section-cennik { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-grid { display: grid; gap: 20px; margin-bottom: 36px; }
.price-card { background: var(--surface); border: 1px solid var(--line); padding: 30px 28px 14px; border-radius: var(--r-card); }
.price-card h3 { color: var(--gold); font-size: 1.55rem; margin: 8px 0 8px; }
.price-card h3 + .price-list { margin-bottom: 22px; }
.price-card-gold { border-color: var(--gold-dim); background: linear-gradient(180deg, rgba(200,161,90,.10), rgba(200,161,90,.02)), var(--surface); }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

/* Salon / nasza historia */
.about-grid { display: grid; gap: 36px; align-items: center; margin-bottom: clamp(40px, 6vw, 64px); }
.about-photo { margin: 0; position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; border-radius: 28px; }
.about-photo::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold-dim); border-radius: 28px; z-index: -1; pointer-events: none; }
.about-text p { color: var(--text-body); }
.pull { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.3; color: var(--gold-soft); margin: 4px 0 22px; }
.signature { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-soft); margin-top: 18px; }
.signature em { font-style: italic; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 440px 1fr; gap: 80px; }
}

.facts { display: grid; gap: 14px; margin-bottom: clamp(32px, 5vw, 48px); }
.fact { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 24px 18px; }
.fact .fact-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-soft); margin: 0 0 6px; }
.fact p { margin: 0; color: var(--text-body); font-size: .95rem; }
@media (min-width: 700px) { .facts { grid-template-columns: repeat(3, 1fr); } }

.team { display: grid; gap: 14px; margin-bottom: clamp(32px, 5vw, 48px); }
.member { display: flex; align-items: center; gap: 18px; border: 1px solid var(--line); padding: 18px 22px; background: var(--surface); border-radius: var(--r-card); }
.avatar { flex: 0 0 68px; width: 68px; height: 68px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-dim); display: inline-flex; align-items: center; justify-content: center; }
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.avatar-initial { font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); background: #1F1C17; }
.member-name { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin: 0 0 2px; }
.member-role { color: var(--text-muted); font-size: .92rem; margin: 0; }
@media (min-width: 640px) { .team { grid-template-columns: 1fr 1fr; } }

.strip { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.strip figure { margin: 0; overflow: hidden; border-radius: var(--r-img); }
.strip img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.strip figure:nth-child(1) { grid-column: span 2; }
.strip figure:nth-child(1) img { aspect-ratio: 16 / 9; }
@media (min-width: 900px) {
  .strip { grid-template-columns: 1.7fr 1fr 1fr; grid-auto-rows: 340px; }
  .strip figure:nth-child(1) { grid-column: span 1; }
  .strip img, .strip figure:nth-child(1) img { aspect-ratio: auto; }
}

/* Opinie */
.section-opinie { background: var(--ink-2); border-top: 1px solid var(--line); }
.reviews { display: grid; gap: 18px; }
.review { margin: 0; background: var(--surface); border: 1px solid var(--line); padding: 28px 26px 22px; border-radius: var(--r-card); position: relative; }
.review::before { content: "“"; position: absolute; top: 6px; left: 20px; font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--gold-dim); opacity: .7; }
.review p { font-size: .98rem; color: #E4E4E4; margin: 14px 0 14px; }
.review footer { font-size: .85rem; color: var(--gold-soft); letter-spacing: .04em; }
.review-more { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-color: var(--gold-dim); background: linear-gradient(180deg, rgba(200,161,90,.10), rgba(200,161,90,.02)), var(--surface); transition: transform .2s var(--ease); }
.review-more::before { content: none; }
.review-more .stars { font-size: 1.4rem; }
.review-more p { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-soft); margin: 10px 0 0; }
.review-more:hover { transform: translateY(-3px); }
@media (min-width: 700px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews { grid-template-columns: repeat(3, 1fr); } }

/* Kontakt */
.contact-grid { display: grid; gap: 36px; }
.nap { font-style: normal; margin-bottom: 20px; }
.nap p { margin: 0 0 6px; }
.hours { border-collapse: collapse; margin-bottom: 26px; width: 100%; max-width: 420px; }
.hours th, .hours td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours td { text-align: right; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.social-list { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.social-list a { color: #E9E9E9; border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; }
.social-list a:hover { color: var(--gold); border-color: var(--gold); }
.map { border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; min-height: 360px; background: var(--surface); }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.35) contrast(1.05); display: block; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; } .map { min-height: 520px; } }

/* Stopka */
.site-footer { background: #030303; border-top: 1px solid var(--line); padding: 56px 0 110px; color: #B9B9B9; font-size: .93rem; }
.footer-grid { display: grid; gap: 26px; }
.footer-logo { width: 200px; height: auto; margin-bottom: 10px; }
.site-footer a { color: #E4E4E4; }
.site-footer a:hover { color: var(--gold); }
.site-footer strong { color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .82rem; color: #7E7E7E; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } .site-footer { padding-bottom: 56px; } }

/* Sticky CTA na telefonie */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1.2fr 1fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(6,6,6,.92); backdrop-filter: blur(8px); border-top: 1px solid var(--gold-dim); }
.mobile-cta .btn { min-height: 48px; padding: 10px 10px; font-size: .9rem; }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* Reveal przy scrollu */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }
