/* ===== Design tokens ===== */
:root {
  --green-900: #2f4334;
  --green-700: #466450;
  --green-500: #6b9a78;
  --sand-50:   #faf7f1;
  --sand-100:  #f3ece0;
  --sand-200:  #e7dcc9;
  --ink:       #2a2620;
  --ink-soft:  #5b554c;
  --white:     #ffffff;
  --accent:    #d98c5f;        /* ciepły terakotowy */
  --accent-dk: #c2744a;

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 40px -22px rgba(47, 67, 52, .45);
  --shadow-sm: 0 8px 22px -16px rgba(47, 67, 52, .5);
  --maxw:      1120px;

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; font-weight: 600; color: var(--green-900); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-dk);
  margin-bottom: .5rem;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.muted { color: var(--ink-soft); font-style: italic; }
em { font-style: italic; color: var(--green-700); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-200);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--green-900); }
.brand__mark { font-size: 1.4rem; }
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a { text-decoration: none; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--accent-dk); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--green-900); border-radius: 2px; transition: .25s; }

/* ===== Buttons ===== */
.btn { display: inline-block; text-decoration: none; font-weight: 700; padding: .8rem 1.5rem; border-radius: 999px; transition: transform .15s, box-shadow .2s, background .2s; }
.btn--primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn--ghost { border: 2px solid var(--green-500); color: var(--green-700); }
.btn--ghost:hover { background: var(--green-500); color: var(--white); transform: translateY(-2px); }

/* ===== Hero ===== */
.hero { background: linear-gradient(160deg, var(--sand-100), var(--sand-50) 60%); padding: clamp(3rem, 7vw, 6rem) 0; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__cta { display: flex; gap: 1rem; margin: 1.8rem 0 1.2rem; flex-wrap: wrap; }
.hero__by { color: var(--ink-soft); }
.hero h1 { margin-bottom: 1.2rem; }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--sand-100); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__intro { color: var(--ink-soft); margin-top: .6rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

/* ===== Checklist ===== */
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .7rem; }
.checklist li { padding-left: 2rem; position: relative; }
.checklist li::before { content: "🐾"; position: absolute; left: 0; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card { background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 2.2rem; margin-bottom: .8rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.badge { display: inline-block; margin-top: 1rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-dk); background: var(--sand-100); padding: .3rem .7rem; border-radius: 999px; }

/* ===== Placeholders ===== */
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  background: repeating-linear-gradient(45deg, var(--sand-100), var(--sand-100) 14px, var(--sand-200) 14px, var(--sand-200) 28px);
  border: 2px dashed var(--green-500);
  border-radius: var(--radius);
  color: var(--green-700);
  min-height: 200px;
  text-align: center;
  font-weight: 600;
}
.photo-placeholder span { font-size: 2.4rem; }
.photo-placeholder--hero { min-height: 380px; }
.photo-placeholder--portrait { min-height: 420px; }
.photo-placeholder--map { min-height: 340px; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery .photo-placeholder { min-height: 200px; }

/* ===== Contact ===== */
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list__icon { font-size: 1.3rem; }

/* ===== Socials ===== */
.socials { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.social { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; color: var(--green-900); background: var(--white); border: 1px solid var(--sand-200); padding: .6rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); transition: transform .15s, color .2s, background .2s; }
.social svg { width: 20px; height: 20px; fill: var(--green-700); transition: fill .2s; }
.social:hover { transform: translateY(-2px); color: var(--accent-dk); }
.social:hover svg { fill: var(--accent-dk); }

/* ===== Footer ===== */
.footer { background: var(--green-900); color: var(--sand-100); padding: 3rem 0; text-align: center; }
.footer__inner { display: grid; gap: .6rem; justify-items: center; }
.brand--footer { color: var(--sand-50); }
.footer__meta a { color: var(--accent); text-decoration: none; }
.footer__copy { font-size: .85rem; opacity: .7; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav__links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0; background: var(--sand-50); border-bottom: 1px solid var(--sand-200); padding: 1rem 24px; transform: translateY(-150%); transition: transform .3s; }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: .8rem 0; border-bottom: 1px solid var(--sand-200); }
  .nav__toggle { display: flex; }
  .hero__inner, .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}
