:root {
  --bg: #090909;
  --bg-2: #101010;
  --card: #151515;
  --text: #f5f5f7;
  --muted: #a8a8ad;
  --line: rgba(255,255,255,.11);
  --light: #f5f5f2;
  --light-card: #ffffff;
  --dark-text: #111113;
  --dark-muted: #626268;
  --accent: #d7b66f;
  --accent-2: #f0d79d;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(0,0,0,.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: #fff; color: #000; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(7,7,7,.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(7,7,7,.94); box-shadow: 0 12px 35px rgba(0,0,0,.23); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand img { width: 52px; height: 38px; object-fit: contain; object-position: left center; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 17px; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font-size: 11px; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.main-nav > a:not(.nav-phone) { color: #d8d8db; transition: color .2s ease; }
.main-nav > a:not(.nav-phone):hover { color: #fff; }
.nav-phone { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 15px; font-weight: 700; }
.nav-phone:hover { background: #fff; color: #000; }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

.hero { position: relative; min-height: 850px; display: grid; align-items: end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('assets/zbite-jablko-witryna.jpg') center 44%/cover no-repeat; transform: scale(1.02); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(0,0,0,.05), rgba(0,0,0,.45) 55%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 44%, rgba(0,0,0,.22) 72%),
    linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.20) 58%, rgba(0,0,0,.45) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 170px 0 74px; }
.eyebrow, .section-kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .16em; font-weight: 760;
  font-size: 12px; color: var(--accent-2);
}
.hero h1 { max-width: 880px; font-size: clamp(48px, 7vw, 92px); line-height: .96; letter-spacing: -.055em; margin: 18px 0 24px; }
.hero h1 span { font-size: .62em; font-weight: 650; color: #efeff1; letter-spacing: -.045em; }
.hero p { max-width: 720px; font-size: clamp(17px, 1.5vw, 21px); color: #d2d2d6; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; min-height: 50px;
  padding: 0 20px; border-radius: 999px; font-weight: 760; font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #fff; color: #080808; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); background: rgba(15,15,15,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.48); }
.hero-meta { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.rating { display: grid; }
.stars { letter-spacing: .11em; color: #f0cc74; font-size: 15px; }
.rating strong { margin-top: 4px; }
.rating span { color: #bcbcc0; font-size: 13px; }
.service-chips { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.service-chips span { border: 1px solid rgba(255,255,255,.16); background: rgba(0,0,0,.22); padding: 8px 12px; border-radius: 999px; color: #d6d6da; font-size: 12px; }

.section { padding: 118px 0; }
.section-light { background: var(--light); color: var(--dark-text); }
.section-dark { background: var(--bg); }
.two-col { display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.copy h2, .section-head h2, .hours-layout h2, .precontact h2, .contact-card h2 {
  font-size: clamp(36px, 4.5vw, 62px); line-height: 1.02; letter-spacing: -.045em; margin: 14px 0 26px;
}
.copy p { color: var(--dark-muted); font-size: 17px; }
.section-dark .section-head p, .reviews-section .section-head p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #8a6c2b; }
.media-card { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-card img { aspect-ratio: 1.06; width: 100%; object-fit: cover; }
.media-card figcaption { font-size: 12px; color: #77777d; padding: 14px 18px 18px; }
.section-head { max-width: 780px; margin-bottom: 46px; }
.section-head p { font-size: 18px; margin: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 270px; background: linear-gradient(180deg, #161616, #111); border: 1px solid var(--line); border-radius: 22px; padding: 28px; }
.service-card:hover { border-color: rgba(240,215,157,.3); transform: translateY(-2px); }
.service-card { transition: transform .2s ease, border-color .2s ease; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; color: var(--accent-2); font-size: 24px; }
.service-card h3 { font-size: 22px; letter-spacing: -.025em; margin: 34px 0 10px; }
.service-card p { color: var(--muted); margin: 0; font-size: 15px; }
.notice { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(240,215,157,.25); background: rgba(240,215,157,.055); border-radius: 20px; padding: 22px 26px; }
.notice strong { font-size: 18px; }
.notice p { margin: 0; color: var(--muted); max-width: 720px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 270px; gap: 14px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: 20px; background: #ddd; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); pointer-events: none; }
.gallery-item span { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: #fff; font-weight: 700; font-size: 14px; }
.gallery-item:hover img { transform: scale(1.025); filter: brightness(.92); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.reviews-section { background: #0d0d0e; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: #151516; border: 1px solid var(--line); border-radius: 22px; padding: 30px; min-height: 255px; display: flex; flex-direction: column; }
.review-card p { color: #dddddf; font-size: 17px; line-height: 1.65; }
.review-card footer { margin-top: auto; color: #8f8f95; font-size: 13px; }
.rating-summary { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 30px; display: flex; gap: 18px; align-items: center; }
.rating-summary > strong { font-size: 62px; letter-spacing: -.05em; line-height: 1; }
.rating-summary > div { display: grid; color: var(--muted); }

.hours-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.hours-layout p { color: var(--dark-muted); font-size: 18px; }
.hours-card { background: #fff; border-radius: 22px; padding: 12px 26px; box-shadow: var(--shadow); }
.hours-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid #ececef; }
.hours-card > div:last-child { border-bottom: 0; }
.hours-card span { color: #68686e; }

.precontact { background: linear-gradient(120deg, #101010 0%, #181510 100%); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.precontact-inner { padding: 74px 0; display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.precontact-inner > div:first-child { max-width: 760px; }
.precontact h2 { margin-bottom: 18px; }
.precontact p { color: #b9b9be; margin: 8px 0; }
.warning { color: #e5c98d !important; font-weight: 700; }
.precontact-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.contact-section { background: #f0f0ed; color: var(--dark-text); }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: stretch; }
.contact-card { background: #fff; border-radius: 24px; padding: 42px; box-shadow: var(--shadow); }
.contact-card dl { margin: 34px 0; display: grid; gap: 0; }
.contact-card dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; border-top: 1px solid #ececef; padding: 18px 0; }
.contact-card dt { color: #77777d; }
.contact-card dd { margin: 0; font-weight: 680; }
.contact-card dd a:hover { text-decoration: underline; }
.contact-card .btn-primary { background: #111; color: #fff; }
.contact-photo { margin: 0; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.contact-photo img { width: 100%; height: calc(100% - 52px); min-height: 520px; object-fit: cover; }
.contact-photo figcaption { height: 52px; display: flex; align-items: center; padding: 0 18px; color: #707076; font-size: 12px; }

.site-footer { background: #080808; padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 64px; }
.footer-brand img { width: 150px; height: 70px; object-fit: contain; object-position: left center; }
.footer-brand p { color: #9c9ca2; max-width: 440px; font-size: 14px; }
.footer-grid h3 { font-size: 14px; margin: 0 0 18px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: #a9a9ae; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #707077; font-size: 11px; display: flex; justify-content: space-between; gap: 30px; }

.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.88); display: none; place-items: center; padding: 40px; }
.lightbox.open { display: grid; }
.lightbox img { max-height: 88vh; max-width: min(1200px, 94vw); border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,.55); }
.lightbox-close { position: fixed; top: 18px; right: 24px; width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(0,0,0,.35); color: #fff; font-size: 30px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; left: 20px; right: 20px; top: 88px; padding: 18px;
    background: rgba(10,10,10,.97); border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
    flex-direction: column; align-items: stretch; gap: 0; opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 10px; }
  .nav-phone { margin-top: 8px; text-align: center; }
  .two-col, .hours-layout, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 780px; }
  .hero-meta { align-items: flex-start; flex-direction: column; }
  .service-chips { justify-content: flex-start; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 1; }
  .precontact-inner { align-items: flex-start; flex-direction: column; }
  .precontact-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 38px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .header-inner { height: 68px; }
  .brand img { width: 44px; }
  .brand-copy small { display: none; }
  .main-nav { top: 76px; left: 13px; right: 13px; }
  .hero { min-height: 760px; }
  .hero-media { background-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.62) 58%, rgba(0,0,0,.36) 100%); }
  .hero-content { padding: 130px 0 38px; }
  .hero h1 { font-size: 48px; }
  .hero h1 span { font-size: .56em; line-height: 1.08; display: inline-block; margin-top: 10px; }
  .hero p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { margin-top: 34px; }
  .service-chips { display: none; }
  .section { padding: 82px 0; }
  .copy h2, .section-head h2, .hours-layout h2, .precontact h2, .contact-card h2 { font-size: 38px; }
  .service-grid, .reviews-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .notice { align-items: flex-start; flex-direction: column; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 310px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 1; }
  .hours-card { padding-inline: 18px; }
  .hours-card > div { font-size: 14px; }
  .contact-card { padding: 28px 22px; }
  .contact-card dl > div { grid-template-columns: 1fr; gap: 4px; }
  .contact-photo img { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .lightbox { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Optional promotion managed from admin panel */
.promo-strip { background: linear-gradient(120deg, #17120a, #0d0d0d 68%); border-top: 1px solid rgba(240,215,157,.18); border-bottom: 1px solid rgba(240,215,157,.18); }
.promo-inner { padding: 52px 0; display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.promo-inner > div { max-width: 790px; }
.promo-inner h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; letter-spacing: -.04em; }
.promo-inner p { margin: 0; color: #c9c9cc; font-size: 17px; }
.admin-link { opacity: .5; }
.admin-link:hover { opacity: 1; color: #fff; }
@media (max-width: 680px) { .promo-inner { align-items: flex-start; flex-direction: column; padding: 42px 0; } .promo-inner .btn { width: 100%; } }
