/* ===== DENTAL CLINIC DESIGN SYSTEM ===== */
/* Based on materialy/docelowy-wyglad.png + materialy/index.html + materialy/index2.html */

:root {
  /* ── Kolory ──────────────────────────────────────────── */
  --blue: #1178b1;
  --blue-deep: #0d5c8a;
  --blue-bright: #2a9fd6;
  --blue-soft: #7cc3e8;
  --navy: #0a2c44;
  --navy-2: #0e3a57;
  --red: #b01e2a;
  --red-bright: #c8283a;
  --ink: #10212e;
  --slate: #5a6c79;
  --slate-2: #8597a3;
  --bg: #f4f9fd;
  --surface: #ffffff;
  --mist: #e9f3fb;
  --mist-2: #dceefa;
  --line: #e2edf5;
  --shadow-sm: 0 2px 10px rgba(17,60,90,.06);
  --shadow: 0 18px 50px -20px rgba(17,60,90,.28);
  --shadow-lg: 0 40px 90px -40px rgba(17,60,90,.45);
  --r: 22px;
  --maxw: 1200px;
  --grad-brand: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));

  /* ── Typografia — czcionki ───────────────────────────── */
  --font-body: 'Manrope', sans-serif;
  --font-heading: 'Fraunces', serif;

  /* ── Typografia — rozmiary ───────────────────────────── */
  --text-xs:   1.3rem;   /* np. eyebrow, data */
  --text-sm:   1.3rem;   /* małe etykiety */
  --text-base: 1.3rem;   /* treść główna */
  --text-md:   1.3rem;   /* lead / większa treść */
  --text-lg:   1.5rem;   /* h3 kart */
  --text-xl:   1.3rem;   /* większe akcenty */

  /* Nagłówki — clamp() dla responsywności */
  --h1-size:    clamp(2.4rem, 4.2vw, 3.7rem);  /* hero h1 */
  --h2-size:    clamp(2rem, 3.4vw, 3rem);       /* sekcje */
  --h2-rev-size: clamp(1.9rem, 3.2vw, 2.7rem); /* sekcja opinii */
  --h3-size:    1.14rem;                        /* karty */

  /* Nagłówki podstron */
  --sp-h1-size:  clamp(1.7rem, 3.2vw, 2.5rem); /* standardowa podstrona */
  --sp-h1-spec:  clamp(1.8rem, 3vw, 2.6rem);   /* karta specjalisty */
  --sp-text:     1.3rem;                        /* treść podstrony */
  --sp-lead:     1.3rem;                        /* specjalizacja/stanowisko */

  /* ── Typografia — grubości ───────────────────────────── */
  --fw-normal:    400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* ── Typografia — wysokości linii ────────────────────── */
  --lh-tight:   1.08;
  --lh-heading: 1.2;
  --lh-body:    1.6;
  --lh-relaxed: 1.8;

  /* ── Spacing ─────────────────────────────────────────── */
  --section-pad:    100px;
  --section-pad-sm:  60px;
  --sp-pad-v:        72px;
  --sp-pad-v-sm:     40px;
  --sp-max-w:       860px;
  --sp-spec-max-w:  900px;
}

html { scroll-behavior: smooth; }

/* Override Raleway from style-min.css */
body {
  font-family: 'Manrope', sans-serif !important;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Fraunces', serif !important;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
}
/* Override h2 size from style-min.css */
h2 { font-size: clamp(2rem, 3.4vw, 3rem) !important; }

/* Guard: prevent subpage h2 styles from bleeding into dental homepage */
.dental-page h2 {
  border-left: none !important;
  background: none !important;
  padding-left: 0 !important;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }

/* ===== DENTAL BUTTONS (renamed to avoid Bootstrap .btn-primary conflict) ===== */
.btn-dental {
  display: inline-flex; align-items: center; gap: 10px; font-family: 'Manrope';
  font-weight: 700; font-size: 1.3rem; padding: 15px 28px; border-radius: 100px;
  cursor: pointer; border: none; transition: .35s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap; text-decoration: none;
}
.btn-dental-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(17,120,177,.6);
}
.btn-dental-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(17,120,177,.7);
  color: #fff;
}
.btn-dental-ghost {
  background: #fff; color: var(--blue-deep); border: 1.5px solid var(--line);
}
.btn-dental-ghost:hover {
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: var(--shadow-sm); color: var(--blue-deep);
}
.btn-dental-red {
  background: linear-gradient(135deg, var(--red-bright), var(--red)); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(176,30,42,.55);
}
.btn-dental-red:hover { transform: translateY(-3px); }

/* ===== TOP UTILITY BAR ===== */
.site-header-shell {
  position: sticky; top: 0; z-index: 1000;
}

.topbar {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  color: #eaf5fd; font-size: .84rem; font-weight: 500;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 20px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: .25s; color: #eaf5fd; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; }
.topbar .tb-right { display: flex; gap: 22px; align-items: center; }
.topbar svg { width: 15px; height: 15px; opacity: .9; }
.topbar .tb-cta {
  background: #fff; color: var(--blue-deep); padding: 6px 16px;
  border-radius: 100px; font-weight: 700; font-size: .8rem;
}
.topbar .tb-cta:hover { color: var(--red); transform: translateY(-1px); }

/* ===== HEADER / NAV ===== */
header.nav {
  position: relative; z-index: 1001;
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line) !important; transition: .3s;
  height:96px;
}
header.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); padding-left:0 !important; padding-right:0 !important;}
header.nav.scrolled .wrap {
	position: fixed; top: 0; left: 0; right:0; width: 100%; background: rgba(255, 255, 255, 0.9); border-bottom:1px solid #e2edf5; max-width:100%;
}
.nav-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 96px; gap: 18px;
}
.nav-links { display: flex; gap: 65px; align-items: center; font-weight: 600; font-size: .97rem; }
.nav-links.left { justify-content: flex-end; margin-right: 20px; }
.nav-links.right { justify-content: flex-start; margin-left: 20px; }
.nav-links a {
  position: relative; color: var(--ink); padding: 6px 0; transition: .25s;
  text-decoration: none;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--red); border-radius: 2px; transition: .3s;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-logo { display: flex; justify-content: center; align-items: center; padding: 0 10px; }
.nav-logo img { height: 80px; width: auto; transition: .3s; image-rendering: auto; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* Mobile nav overlay */
.nav-mobile { display: none; }
.nav-mobile.open {
  display: flex; flex-direction: column; gap: 0;
  position: fixed; top: var(--mobile-nav-offset, 120px); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  z-index: 1000; padding: 24px 28px; overflow-y: auto; top:122px;
}
.scrolled .nav-mobile.open {top:78px;}
.nav-mobile a {
  padding: 16px 0; font-size: 1.2rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line); text-decoration: none;
}
.nav-mobile a:hover { color: var(--blue); }

/* ===== HERO (full-bleed: text left constrained to 1200px grid, photo fills right half) ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
}


.hero-right { position: relative; overflow: hidden; min-height: 500px; }
.hero-right img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero h1 { font-size: clamp(2.4rem, 4.2vw, 3.7rem) !important; margin: 22px 0 0; }
.hero h1 .accent { color: var(--blue); font-style: italic; }
.hero p.lead { font-size: 1.3rem; color: var(--slate); margin: 22px 0 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 38px; margin-top: 42px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: 'Fraunces'; font-size: 2rem; color: var(--blue-deep); line-height: 1; }
.hero-trust .ht span { font-size: .8rem; color: var(--slate-2); font-weight: 600; margin-top: 5px; }

/* ===== SERVICES LIST (2-column rows: icon + title + sub, per index2) ===== */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.sec-head h2 { font-size: clamp(2rem, 3.4vw, 3rem) !important; margin: 16px 0 0; }
.sec-head p { color: var(--slate); margin-top: 16px; font-size: 1.3rem; }
.sec-head.left { text-align: left; margin: 0 0 44px; }

section.block { padding: 100px 0; }

.services-list-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 44px; position: relative; z-index: 1;
}
.svc-row {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 18px; border-radius: 16px; transition: .3s;
  text-decoration: none; color: inherit;
}
.svc-row:hover { background: var(--mist); transform: translateX(8px); }
.svc-ic {
  min-width: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.svc-ic svg { width: 85px; height: 85px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-row h3 { font-family: 'Manrope', sans-serif !important; font-size: 1.3rem; font-weight: 700; margin: 0; letter-spacing: 0; }
.svc-row p { margin: 3px 0 0; font-size: .84rem; color: var(--slate-2); }
.svc-arrow { margin-left: auto; color: var(--mist-2); transition: .3s; display: flex; }
.svc-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.svc-row:hover .svc-arrow { color: var(--blue); transform: translateX(4px); }
.svc-watermark {
  position: absolute; right: -180px; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px; z-index: 0; pointer-events: none;
}
.svc-watermark svg { width: 100%; height: 100%; fill: var(--blue); }

/* ===== SERVICE ACCORDION ===== */
button.svc-row {
  width: 100%; background: none; border: none;
  cursor: pointer; font-family: inherit; text-align: left;
}
.svc-item.open > .svc-row {
  background: var(--mist); border-radius: 16px 16px 0 0; transform: none;
}
.svc-item.open > .svc-row:hover { transform: none; }
.svc-item.open > .svc-row .svc-arrow,
.svc-item.open > .svc-row:hover .svc-arrow {
  transform: rotate(90deg); color: var(--blue);
}
.svc-prices {
  overflow: hidden; max-height: 0;
  transition: max-height .38s cubic-bezier(.2,.8,.3,1);
  background: var(--mist); border-radius: 0 0 16px 16px;
}
.price-list { padding: 8px 18px 16px; border-top: 1px solid rgba(17,120,177,.12); }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 5px 0; gap: 14px; font-size: 1.3rem;
  border-bottom: 1px solid rgba(17,60,90,.05);
}
.price-row:last-of-type { border-bottom: none; }
.price-row span { color: var(--slate); flex: 1; }
.price-row strong { color: var(--blue-deep); white-space: nowrap; font-weight: 700; }
.price-row.indent { padding-left: 14px; }
.price-row.indent > span::before { content: "–"; margin-right: 7px; color: var(--blue-soft); }
.price-sub {
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--blue-deep); margin: 12px 0 3px;
}
.price-note { font-size: 1.1rem; color: var(--slate-2); font-style: italic; margin-top: 8px; line-height: 0.5;}
.price-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: 1.3rem; font-weight: 700; color: var(--blue); text-decoration: none;
}
.price-more:hover { color: var(--blue-deep); }
.price-more svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; }


.about-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  overflow: hidden;
}
.about-banner-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; min-height: 440px; align-items: stretch;
}
.about-banner-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 64px 90px max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
}
.about-banner h2 { color: #fff !important; }
.about-banner h2 em { color: var(--blue-soft); font-style: italic; }
.about-banner p { color: rgba(255,255,255,.88); margin-top: 20px; margin-bottom: 0; line-height: 1.7; font-size: 1.3rem; max-width: 100%; }
.about-banner p.dim { color: rgba(255,255,255,.65); margin-top: 10px; }
.about-banner-img { position: relative; min-height: 340px; }
.about-banner-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--bg); position: relative; }
.rev-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }
.google-rate {
  display: flex; align-items: center; gap: 18px; background: #fff;
  border-radius: 18px; padding: 18px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.google-rate .gnum { font-family: 'Fraunces'; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; fill: #f5a623; }
.google-rate small { color: var(--slate-2); font-weight: 600; font-size: .82rem; }
.glogo { font-weight: 800; font-size: .9rem; }
.glogo .g1{color:#4285F4}.glogo .g2{color:#EA4335}.glogo .g3{color:#FBBC05}.glogo .g4{color:#4285F4}.glogo .g5{color:#34A853}.glogo .g6{color:#EA4335}
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rev-card { background: #fff; border-radius: var(--r); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: .35s; }
.rev-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.rev-card .stars { margin-bottom: 16px; }
.rev-card p { color: var(--slate); font-size: 1.1rem; margin-bottom: 22px; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 13px; }
.rev-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1rem; }
.rev-author b { font-size: .95rem; display: block; font-style: normal; }
.rev-author span { font-size: .78rem; color: var(--slate-2); }

/* ===== SPECIALISTS (photo cards) ===== */
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px 24px; }
.doc { text-align: center; transition: .35s; }
.doc .ring {
  width: 170px; height: 170px; margin: 0 auto 18px; border-radius: 50%;
  padding: 5px; background: conic-gradient(from 140deg, var(--blue-bright), var(--blue-soft), var(--red), var(--blue-bright));
  position: relative; transition: .4s;
}
.doc:hover .ring { transform: translateY(-8px) rotate(2deg); }
.doc .ring img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  display: block; background: var(--mist);
}
.doc .av {
  width: 100%; height: 100%; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-family: 'Fraunces';
  font-size: 2.6rem; font-weight: 600; color: #fff;
  box-shadow: inset 0 -20px 40px rgba(0,0,0,.12);
}
.doc h3 { font-size: 1.3rem; margin-bottom: 3px; }
.doc .role { color: var(--blue); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

/* ===== EXPERIENCE (photo left, counter + text right, bg photo + navy overlay) ===== */
.exp { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.exp-bg {
  position: absolute; inset: 0;
  background: url('/utils/images/section-onas2-back.webp') center/cover no-repeat;
}
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,38,58,.94) 0%, rgba(13,77,116,.88) 100%);
}
.exp .wrap { position: relative; z-index: 2; }
.exp-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.exp-photo img {
  width: 100%; border-radius: 22px; display: block;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.exp-counter { margin-bottom: 26px; }
.exp-counter .number {
  font-family: 'Fraunces'; font-weight: 600; line-height: .95;
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.exp-counter .label { font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,.9); margin-top: 8px; }
.exp h2 { color: #fff !important; font-size: clamp(2rem, 3.2vw, 2.9rem) !important; }
.exp p { color: rgba(255,255,255,.88); margin: 18px 0 0; font-size: 1.3rem; line-height: 1.75; }
.exp-pills { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.exp-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 100px; font-weight: 700; font-size: 1.3rem;
}
.exp-pill svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.exp-pill.solid { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 28px -10px rgba(17,120,177,.6); }
.exp-pill.outline { border: 1.5px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }

/* ===== PREPARE ===== */
.prep-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.prep-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 28px; position: relative; overflow: hidden; transition: .35s; }
.prep-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.prep-num { font-family: 'Fraunces'; font-size: 3.4rem; color: var(--mist-2); font-weight: 700; line-height: .8; position: absolute; top: 18px; right: 22px; transition: .35s; }
.prep-card:hover .prep-num { color: var(--red); }
.prep-ic { width: 86px; height: 86px; border-radius: 15px; background: var(--mist); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.prep-ic svg { width: 58px; height: 58px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.prep-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.prep-card p { color: var(--slate); font-size: 1.3rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

.post { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: .4s; cursor: pointer; }
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.post a { text-decoration: none; color: inherit; display: block; }
.post .ph { height: 210px; position: relative; overflow: hidden; background: var(--grad-brand); }
.post .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post:hover .ph img { transform: scale(1.07); }
.post .pbody { padding: 26px; }
.post .pdate { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.post h3 { font-size: 1.3rem; margin: 0 0 12px; line-height: 1.25; }
.post p { color: var(--slate); font-size: 1.3rem; margin-bottom: 18px; }
.post .read { font-weight: 800; font-size: .85rem; color: var(--blue-deep); display: inline-flex; gap: 7px; align-items: center; transition: .3s; }
.post:hover .read { gap: 12px; }


.article-content::after {
  content: "";
  display: block;
  clear: both;
}

.article-content strong {
	font-weight:800 !important;
}

.article-image {
  float: right;
  width: 45%;
  max-width: 520px;
  height: auto;
  margin: 0 0 24px 32px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .article-image {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px 0;
  }
}

/* ===== MAP (full-bleed iframe + floating info box, per index2) ===== */
.map-section { position: relative; }
.map-frame {
  display: block; width: 100%; height: 470px; border: 0;
  background: var(--mist); z-index: 1;
}
/* grayscale tylko na kafelkach OSM — pinezka i popup pozostają kolorowe */
.map-frame .leaflet-tile-pane { filter: grayscale(25%); }
.map-info-box {
  position: absolute; left: 8%; top: 50%; transform: translateY(-50%) !important;
  background: #fff; padding: 36px; border-radius: 20px;
  /* ponad warstwami Leafleta (kontrolki mają z-index do 1000) */
  box-shadow: 0 20px 60px rgba(0,0,0,.18); max-width: 340px; z-index: 1100;
}
.map-info-box h4 {
  font-weight: 800; margin-bottom: 22px; font-size: 1.5rem;
  display: flex; align-items: center; gap: 10px; color: var(--ink);
}
.map-info-box h4 svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.9; }
.map-info-box .info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.map-info-box .info-item:last-child { margin-bottom: 0; }
.map-info-box .info-item svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.map-info-box .info-item strong { font-size: 1.3rem; display: block; margin-bottom: 3px; color: var(--ink); }
.map-info-box .info-item span { font-size: 1.3rem; color: var(--slate); line-height: 1.55; }
.map-info-box .info-item a { color: var(--slate); text-decoration: none; }
.map-info-box .info-item a:hover { color: var(--blue); }

/* ===== FOOTER (brand blue gradient, per mockup) ===== */
footer.dental-footer {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 55%, #0a4a73 100%);
  padding: 72px 0 0; color: #fff;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.15fr 1.15fr; gap: 44px; padding-bottom: 50px; }
.foot-logo img { height: 110px; margin-bottom: 20px; }
.foot-logo p { color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.75; }
.foot-col h4 {
  font-family: 'Manrope'; font-weight: 800; font-size: 1.3rem; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin-bottom: 22px;
}
.foot-col a { color: rgba(255,255,255,.78); font-size: 1.1rem; display: block; margin-bottom: 11px; transition: .25s; text-decoration: none; }
.foot-col a:hover { color: #fff; transform: translateX(3px); }
.foot-row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.55; }
.foot-row svg { width: 17px; height: 17px; stroke: var(--blue-soft); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 4px; }
.foot-row a { display: inline; margin: 0; }
.hours-row {
  display: flex; justify-content: space-between; font-size: 1.1rem;
  color: rgba(255,255,255,.78); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row b { color: #fff; font-weight: 700; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.15); padding: 24px 0;
  text-align: center; font-size: .84rem; color: rgba(255,255,255,.6);
}
.foot-bottom a { color: rgba(255,255,255,.85); font-weight: 600; text-decoration: none; }
.foot-bottom a:hover { color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: .85s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: .7s cubic-bezier(.2,.7,.3,1); }
.stagger.in > * { opacity: 1; transform: none; }
@media(max-width:640px) {
  .reveal { transform: translateY(22px); transition-duration: .6s; }
  .stagger > * { transform: translateY(16px); transition-duration: .55s; }
}
@media(prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sp-header, .sp-header::before, .sp-header::after { animation: none !important; }
}

/* ===== RESPONSIVE ===== */
@media(max-width:980px) {
	
	header.nav  {height:79px;}
  .nav-links { display: none; }
  .burger { display: flex; margin-left:auto; }
  .nav-grid { grid-template-columns: auto 1fr auto; height: 78px; gap:0;}
  .nav-logo { justify-content: flex-start; }
  .nav-logo img { height: 65px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 28px; order: 1; }
  .hero-right { min-height: 320px; order: 0; }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-list-grid { grid-template-columns: 1fr; gap: 4px; }
  .svc-watermark { display: none; }
  .about-banner-grid { grid-template-columns: 1fr; }
  .about-banner-text { padding: 64px 28px; }
  .rev-grid, .blog-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
  .prep-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .topbar .tb-right a:first-of-type{ display:none !important; }
  .topbar .tb-left a:first-of-type{display:none !important; }
  .map-info-box {
    position: relative; transform: none !important; max-width: none;
    margin: 18px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.1);
	left:0; right:0; top:-130px;
  }
  .map-frame { height: 320px; }
  .wrap {margin:0 !important; width:100%;}
}
@media(max-width:640px) {
  .wrap { padding: 0 18px; }
  .hero-left { padding: 40px 18px 48px; }
  .spec-grid, .prep-grid, .foot-grid { grid-template-columns: 1fr; }
  .topbar { font-size: .78rem; }
  .topbar .tb-right { gap: 14px; }
  section.block { padding: 70px 0; }
  .exp-counter .number { font-size: 3.2rem; }
}

/* ===== SUBPAGES ========================================================= */

.sp-page { min-height: 60vh; }

/* Nagłówek podstrony — animowany gradient + pływające kule */
.sp-header {
  background: linear-gradient(-45deg, var(--navy) 0%, var(--blue-deep) 35%, #147fbf 65%, var(--navy-2) 100%);
  background-size: 320% 320%;
  animation: spHeaderWave 16s ease infinite;
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}
.sp-header::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.055); pointer-events: none;
  animation: spOrbFloat 9s ease-in-out infinite alternate;
}
.sp-header::after {
  content: '';
  position: absolute; bottom: -50px; left: 4%;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
  animation: spOrbFloat 12s ease-in-out -4s infinite alternate;
}
@keyframes spHeaderWave {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spOrbFloat {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(26px) scale(1.15); }
}
.sp-header-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 14px;
}
.sp-crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative; z-index: 1;
  text-align: center;
  justify-content: center;
}
.sp-crumbs a { color: var(--blue-soft); text-decoration: none; transition: .2s; font-size: 10px; }
.sp-crumbs a:hover { color: #fff; }
.sp-crumb-sep { color: rgba(255,255,255,.45); }
.sp-crumb-cur { color: #fff; }
.sp-header h1 {
  font-size: 46px !important;
  color: #fff !important;
  line-height: var(--lh-heading);
  margin: 0;
}
.sp-header .wrap { text-align: center; }
.sp-header-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,.75);
  margin-top: 12px;
  position: relative; z-index: 1;
}
@media(max-width:768px) {
  .sp-header { padding: var(--sp-pad-v-sm) 0 44px; }
}

/* ===== VIDEO POPUP ===== */
.vid-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(4,20,32,.88); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.vid-overlay.open { display: flex; }
.vid-frame-wrap {
  position: relative; width: min(90vw, 900px); aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.vid-frame-wrap iframe { width: 100%; height: 100%; border: none; }
.vid-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 1.35rem; line-height: 1; border-radius: 50%;
  width: 42px; height: 42px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.vid-close:hover { background: rgba(255,255,255,.3); }
.btn-vid-play {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope'; font-weight: 700; font-size: 1.3rem;
  color: #fff; background: transparent;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 100px;
  padding: 13px 24px; cursor: pointer; transition: .3s;
  white-space: nowrap;
}
.btn-vid-play:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.vid-play-ic svg { width: 28px; height: 28px; }

/* ===== TREŚĆ PODSTRONY ===== */
.sp-content { padding: var(--sp-pad-v) 0; }
.sp-content .wrap { max-width: 1200px; }
.sp-content p {
  font-size: var(--sp-text);
  color: var(--slate);
  line-height: var(--lh-relaxed);
  margin-bottom: 1.2em;
}
.sp-content h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.3rem, 2vw, 1.7rem) !important;
  color: var(--ink);
  margin: 1.8em 0 .6em;
}
.sp-content h3 {
  font-family: var(--font-body) !important;
  font-size: var(--text-lg) !important;
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin: 1.4em 0 .5em;
  letter-spacing: 0;
}
.sp-content ul, .sp-content ol {
  color: var(--slate);
  font-size: var(--sp-text);
  line-height: var(--lh-relaxed);
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}

/* Karta specjalisty */
.sp-spec-section {
  padding: var(--sp-pad-v) 0 calc(var(--sp-pad-v) + 20px);
  background: var(--bg);
}
.sp-spec-wrap { max-width: var(--sp-spec-max-w); margin: 0 auto; padding: 0 24px; }
.sp-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: var(--text-sm);
  font-weight: var(--fw-bold); text-decoration: none;
  margin-bottom: 36px; transition: .2s;
}
.sp-back-link:hover { color: var(--blue-deep); gap: 12px; }
.sp-spec-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 52px; align-items: start;
}
.sp-spec-photo { text-align: center; }
.sp-spec-photo img, .sp-spec-av {
  width: 200px; height: 200px; border-radius: 50%;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow);
  object-fit: cover; display: block; margin: 0 auto;
}
.sp-spec-av {
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 3rem;
  font-weight: var(--fw-semibold); color: #fff;
}
.sp-spec-body h1 {
  font-family: var(--font-heading) !important;
  font-size: var(--sp-h1-spec) !important;
  font-weight: var(--fw-semibold);
  color: var(--ink); margin: 0 0 8px;
  line-height: var(--lh-heading);
}
.sp-spec-body .sp-role {
  color: var(--blue); font-weight: var(--fw-bold);
  font-size: var(--sp-lead); margin: 0 0 28px;
}
.sp-spec-body .sp-bio {
  color: var(--slate); line-height: var(--lh-relaxed); font-size: var(--sp-text);
}
.sp-spec-body .sp-bio p { margin-bottom: 1em; }

@media(max-width:720px) {
  .sp-spec-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-spec-section { padding: var(--sp-pad-v-sm) 0 60px; }
}

/* ===== REVIEWS CAROUSEL (>3 opinii) ===================================== */
.rev-carousel-outer { position: relative; }
.rev-carousel-viewport { overflow: hidden; }
.rev-track {
  display: flex; gap: 24px;
  transition: transform .42s cubic-bezier(.22,.8,.28,1);
  will-change: transform;
}
.rev-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}
.rev-slide .rev-card { height: 100%; }
.rev-nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; }
.rev-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer;
  transition: .3s; padding: 0;
}
.rev-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }
.rev-arrow-btn {
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .25s; color: var(--ink); flex-shrink: 0;
}
.rev-arrow-btn:hover { border-color: var(--blue); color: var(--blue); transform: scale(1.08); }
.rev-arrow-btn:disabled { opacity: .35; pointer-events: none; }
.rev-arrow-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media(max-width:1024px) {
  .rev-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media(max-width:640px) {
  .rev-slide { flex: 0 0 100%; max-width: 100%; }
  .rev-arrow-btn { width: 38px; height: 38px; }
}

/* ===== STRONA CENNIKA ===================================================== */
.sp-cennik { padding: 64px 0 100px; }
.sp-cennik > .wrap { max-width: 860px; }
.sp-content-lead { padding-bottom: 0; }
.sp-content-lead > .wrap { padding-bottom: 0; }

.sp-cennik-card {
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  overflow: hidden;
}
.sp-cennik-head {
  padding: 24px 32px 20px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.sp-cennik-head h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  color: var(--navy) !important;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.sp-cennik-sub {
  color: var(--slate); font-size: var(--text-sm); margin: 0;
}
.sp-cennik-table { padding: 4px 0; }

.pcn-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 32px; gap: 16px;
  border-bottom: 1px solid var(--line);
}
.pcn-row:last-child { border-bottom: none; }
.pcn-indent { padding-left: 52px; background: rgba(17,60,90,.02); }
.pcn-name { color: var(--ink); font-size: var(--sp-text); flex: 1; }
.pcn-price {
  font-weight: var(--fw-bold); color: var(--blue);
  font-size: var(--text-md); white-space: nowrap;
}
.pcn-sub {
  padding: 12px 32px 4px;
  font-size: var(--text-xs); font-weight: var(--fw-bold);
  color: var(--slate-2); text-transform: uppercase; letter-spacing: .08em;
}
.pcn-note {
  padding: 4px 32px 10px;
  font-size: var(--text-xs); color: var(--slate-2); font-style: italic;
}

@media(max-width:640px) {
  .sp-cennik-head { padding: 20px; }
  .sp-cennik-head, .pcn-row { padding-left: 20px; padding-right: 20px; }
  .pcn-indent { padding-left: 32px; }
  .pcn-sub, .pcn-note { padding-left: 20px; padding-right: 20px; }
}

/* ===== GALERIA LISTA ====================================================== */
.sp-galeria-list { padding: 64px 0 100px; }
.gal-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.gal-card {
  background: var(--surface); border-radius: var(--r);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .32s, box-shadow .32s;
  display: flex; flex-direction: column;
}
.gal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gal-cover {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--mist);
}
.gal-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.gal-card:hover .gal-cover img { transform: scale(1.06); }
.gal-cover-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.gal-cover-ph svg { width: 60px; height: 60px; stroke: var(--line); }
.gal-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.gal-body h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1rem, 1.6vw, 1.2rem) !important;
  color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em;
}
.gal-body p { color: var(--slate); font-size: var(--text-sm); flex: 1; margin: 0; line-height: 1.6; }
@media(max-width:900px) { .gal-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:540px) { .gal-list-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ===== GALERIA SZCZEGÓŁOWA ================================================ */
.sp-galeria-detail { padding: 64px 0 100px; }
.sp-gal-intro {
  color: var(--slate); line-height: var(--lh-relaxed);
  font-size: var(--sp-text); margin-bottom: 40px;
  max-width: var(--sp-max-w);
}
.sp-gal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.sp-gal-item {
  display: block; overflow: hidden; border-radius: 10px;
  aspect-ratio: 1; background: var(--mist); cursor: pointer;
}
.sp-gal-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.sp-gal-item:hover img { transform: scale(1.08); }
@media(max-width:900px) { .sp-gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:560px) { .sp-gal-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; } }

/* ===== LIGHTBOX =========================================================== */
.sp-lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(8,20,34,.96);
  display: none; align-items: center; justify-content: center;
  flex-direction: column;
}
.sp-lightbox.open { display: flex; }
.sp-lb-img {
  max-width: calc(100vw - 108px); max-height: calc(100vh - 100px);
  border-radius: 8px; display: block;
  box-shadow: 0 0 80px rgba(0,0,0,.6);
}
.sp-lb-close {
  position: absolute; top: 14px; right: 18px;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: rgba(255,255,255,.75); width: 44px; height: 44px;
  font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s;
}
.sp-lb-close:hover { background: rgba(255,255,255,.22); color: #fff; }
.sp-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; border-radius: 10px;
  color: rgba(255,255,255,.75); width: 48px; height: 72px;
  font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s; line-height: 1;
}
.sp-lb-nav:hover { background: rgba(255,255,255,.22); color: #fff; }
.sp-lb-prev { left: 12px; }
.sp-lb-next { right: 12px; }
.sp-lb-caption { color: rgba(255,255,255,.65); font-size: .875rem; margin-top: 14px; text-align: center; max-width: 520px; padding: 0 60px; }
.sp-lb-counter { color: rgba(255,255,255,.35); font-size: .74rem; margin-top: 4px; letter-spacing: .06em; }
@media(max-width:640px) {
  .sp-lb-img { max-width: calc(100vw - 16px); max-height: calc(100vh - 72px); }
  .sp-lb-nav { display: none; }
  .sp-lb-caption { padding: 0 16px; }
}

/* ===== STRONA KONTAKTU ==================================================== */
.sp-kontakt { padding: 72px 0 84px; }
.sp-kontakt-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: start;
}
.sp-kontakt-text h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem) !important;
  color: var(--ink); margin: 12px 0 18px;
}
.sp-kontakt-text p {
  color: var(--slate); font-size: var(--sp-text);
  line-height: var(--lh-relaxed); margin-bottom: 1.1em;
}
.sp-kontakt-text .btn-dental { margin-top: 10px; }

.sp-kontakt-cards { display: grid; gap: 16px; }
.sp-kcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.sp-kcard-ic {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sp-kcard-ic svg {
  width: 22px; height: 22px;
  stroke: var(--blue); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sp-kcard-body { flex: 1; }
.sp-kcard-body strong {
  display: block; color: var(--ink);
  font-size: var(--text-sm); font-weight: var(--fw-extrabold);
  letter-spacing: .02em; margin-bottom: 5px;
}
.sp-kcard-body span, .sp-kcard-body a {
  color: var(--slate); font-size: var(--sp-text); line-height: 1.55;
}
.sp-kcard-body a {
  color: var(--blue); text-decoration: none; font-weight: var(--fw-semibold);
}
.sp-kcard-body a:hover { color: var(--blue-deep); }
.sp-khours-row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: var(--text-sm); color: var(--slate);
  padding: 3px 0;
}
.sp-khours-row b { color: var(--ink); font-weight: var(--fw-bold); white-space: nowrap; }

/* Mapa dojazdu na stronie kontaktu (pełna szerokość) */
.sp-kontakt-map { height: 430px; position: relative; }
.sp-kontakt-map .map-frame-sub { position: absolute; inset: 0; z-index: 0; }

@media(max-width:880px) {
  .sp-kontakt { padding: 48px 0 56px; }
  .sp-kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .sp-kontakt-map { height: 340px; }
}

@media(min-width:2000px) {
	.hero-left {
	    padding: 80px 60px 80px max(28px, calc((76vw - var(--maxw)) / 2 + 28px));
	}
	.about-banner-text {
		padding: 90px 64px 90px max(28px, calc((77vw - var(--maxw)) / 2 + 28px));
	}
}