/* Wspólne style podstron usługowych – spójne z paletą i typografią strony głównej. */
:root {
  --cream: #fbf7f0;
  --cream-50: #fefcf8;
  --sand: #f4ede1;
  --sand-200: #e8dac4;
  --ink: #2b2118;
  --soft: #5a4d3f;
  --muted: #8b7c6b;
  --clay: #9a7b5b;
  --clay-dark: #6f5640;
  --gold: #b0904e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--soft);
  line-height: 1.75;
  background:
    radial-gradient(rgba(154,123,91,.045) .5px, transparent .5px) 0 0 / 22px 22px,
    var(--cream);
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--ink); font-weight: 500; line-height: 1.12; }
a { color: var(--clay); }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Nagłówek */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(154,123,91,.12);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }
.site-header img { height: 38px; width: auto; }
.site-header nav { display: flex; align-items: center; gap: 1.4rem; }
.site-header nav a { color: var(--soft); text-decoration: none; font-size: .9rem; transition: color .25s; }
.site-header nav a:hover { color: var(--clay); }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--cream-50); text-decoration: none;
  font-size: .88rem; font-weight: 500; padding: .7rem 1.4rem; border-radius: 999px;
  transition: background .3s, transform .3s;
}
.btn:hover { background: var(--clay-dark); transform: translateY(-2px); color: var(--cream-50); }
.btn-clay { background: var(--clay); }
.btn-outline { background: transparent; border: 1px solid rgba(43,33,24,.25); color: var(--ink); }
.btn-outline:hover { border-color: var(--clay); color: var(--clay); background: transparent; }
@media (max-width: 720px) { .site-header nav .hide-mobile { display: none; } }

/* Breadcrumb */
.crumbs { font-size: .8rem; color: var(--muted); padding: 1.25rem 0 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--clay); }

/* Hero podstrony */
.hero { padding: 2.5rem 0 1rem; }
.eyebrow { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.25rem); margin: 0 0 1rem; font-weight: 600; }
.hero p.lead { font-size: 1.12rem; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

/* Sekcje */
section { padding: 2.5rem 0; }
section h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); margin: 0 0 1rem; }
section h3 { font-size: 1.3rem; margin: 1.5rem 0 .4rem; }
.prose p { margin: 0 0 1.1rem; max-width: 820px; }
.prose ul { max-width: 820px; padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }

/* Galeria zdjęć */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.grid a { display: block; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px -22px rgba(43,33,24,.4); }
.grid img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 1s ease; background: var(--sand-200); }
.grid a:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .grid { grid-template-columns: repeat(2, 1fr); } }

/* Blok wyróżniony (obszar działania / CTA) */
.panel { background: var(--sand); border: 1px solid rgba(154,123,91,.15); border-radius: 22px; padding: 2rem; }
.cta { text-align: center; }
.cta h2 { margin-bottom: .6rem; }
.cta p { max-width: 620px; margin: 0 auto 1.5rem; }

/* FAQ */
.faq details { border-bottom: 1px solid rgba(43,33,24,.1); padding: .3rem 0; }
.faq summary { cursor: pointer; list-style: none; padding: 1rem 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--clay); font-family: 'Jost', sans-serif; font-size: 1.4rem; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 1rem; color: var(--soft); }

/* Stopka */
.site-footer { background: var(--ink); color: rgba(251,247,240,.75); margin-top: 2rem; }
.site-footer .container { padding-top: 3rem; padding-bottom: 2rem; }
.site-footer h4 { color: var(--cream-50); font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; margin: 0 0 .6rem; }
.site-footer a { color: rgba(251,247,240,.75); text-decoration: none; }
.site-footer a:hover { color: var(--cream-50); }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.foot-cols ul { list-style: none; padding: 0; margin: .8rem 0 0; font-size: .9rem; }
.foot-cols li { margin-bottom: .5rem; }
.foot-legal { font-size: .78rem; color: rgba(251,247,240,.45); }
.foot-bottom { border-top: 1px solid rgba(251,247,240,.1); margin-top: 2rem; padding-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: .78rem; color: rgba(251,247,240,.5); }
.credit a { color: #ef4444; font-weight: 500; }
@media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr; } }
