:root{
  --bg: #F6F2EC;
  --ink: #141414;
  --muted: #5B5854;

  --gold: #C9A227;
  --gold-soft: #E2C06D;

  --line-soft: rgba(20,20,20,.08);

  --radius-xl: 22px;
  --radius-lg: 16px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,.08);

  --container: 1100px;

  --focus: 0 0 0 3px rgba(201,162,39,.22), 0 0 0 1px rgba(201,162,39,.38);

  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: "Cormorant Garamond", Georgia, serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height:1.55;

  background:
    radial-gradient(900px 520px at 18% 0%,
      rgba(201,162,39,.22), transparent 62%),
    radial-gradient(800px 520px at 90% 10%,
      rgba(226,192,109,.18), transparent 58%),
    radial-gradient(900px 600px at 70% 92%,
      rgba(20,20,20,.06), transparent 62%),
    linear-gradient(180deg, #fbf7f0 0%, #f3ede4 55%, #efe7dc 100%);
}
h1,h2,h3,.h1,.h2,.h3{
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  font-weight: 500;
}

.nav a, .btn, input, textarea, .tag{
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
p{ margin:0 0 14px; }

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.skip-link{
  position:absolute;
  left:12px; top:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:12px;
  box-shadow: var(--shadow-soft);
  transform: translateY(-150%);
  transition: transform .15s ease;
  z-index:9999;
}
.skip-link:focus{ transform: translateY(0); outline:none; box-shadow: var(--focus); }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,242,236,.88);
  border-bottom:1px solid var(--line-soft);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 10px 0;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo{
  height: 72px;
  width:auto;
  display:block;
}

@media (min-width: 820px){
  .brand-logo{ height: 84px; }
}

/* Mobile menu */
.nav-toggle{
  border:1px solid var(--line-soft);
  background: rgba(255,255,255,.65);
  width:44px; height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.nav-toggle:focus{ outline:none; box-shadow: var(--focus); }

.burger{
  width:18px; height:2px;
  background: var(--ink);
  position:relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px; height:2px;
  background: var(--ink);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

.site-nav{
  display:none;
  position:absolute;
  right:16px;
  top:84px;
  background: rgba(255,255,255,.96);
  border:1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding:10px;
  min-width: 190px;
}
.site-nav a{
  display:block;
  padding:10px 12px;
  text-decoration:none;
  border-radius:12px;
  color: rgba(20,20,20,.86);
}
.site-nav a:hover{ background: rgba(201,162,39,.10); color: rgba(20,20,20,1); }
.site-nav a:focus{ outline:none; box-shadow: var(--focus); }

.site-nav.is-open{ display:block; }

@media (min-width: 820px){
  .nav-toggle{ display:none; }

  .site-nav{
    display:flex !important;
    position:static;
    background:transparent;
    border:0;
    box-shadow:none;
    padding:0;
    min-width:auto;
    gap:24px;
    align-items:center;
  }

  .site-nav a{
    padding: 6px 8px;
    border-radius: 10px;
    line-height:1;
  }
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line-soft);
}
.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(.98) contrast(.98);
}
.hero-fade{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(246,242,236,.94) 0%,
    rgba(246,242,236,.80) 42%,
    rgba(246,242,236,.38) 74%,
    rgba(246,242,236,.18) 100%);
}
.hero-inner{
  position:relative;
  padding: 56px 0 56px;
}
.hero-copy{
  width:min(560px, 100%);
}
.hero h1{
  margin:0 0 10px;
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 60px);
  line-height:1.02;
  font-weight:600;
}
.hero p{
  color: var(--muted);
  font-size: 16px;
  max-width: 54ch;
}
.hero-actions{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }

/* Sections */
.section{
  padding: 44px 0;
  position: relative;
}
.section:nth-of-type(even){
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.45));
}

/* Section headings */
.section-head{
  margin-bottom:18px;
  position: relative;
  padding-top: 14px;
}
.section-head::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width: 66px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  opacity: .95;
}
.section-head.center{ text-align:center; }
.section-head.center::before{
  left: 50%;
  transform: translateX(-50%);
}
.section-head h2{
  margin:0;
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight:600;
}
.section-head p{ color: var(--muted); margin-top:6px; }

/* Cards (used for contact form only) */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
  border:1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}

/* About (layout B) */
.about{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:start;
}

.about-media{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border:1px solid var(--line-soft);
  background: rgba(255,255,255,.40);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.about-media img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy{
  color: var(--muted);
}

.about-copy p{
  max-width: 70ch;
}

.about-actions{
  margin-top: 14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (min-width: 820px){
  .about{
    grid-template-columns: 360px 1fr;
    gap: 22px;
    align-items:start;
  }

  .about-media img{
    aspect-ratio: auto;
    height: 360px;
    width: 100%;
    object-fit: cover;
  }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;

  background: var(--ink);
  border: 1px solid rgba(20,20,20,.10);
  color: #fff;

  text-decoration:none;
  font-size: 14px;
  font-weight:600;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
}
.btn:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn:focus{ outline:none; box-shadow: var(--focus); }

.btn.btn-ghost{
  background: rgba(255,255,255,.55);
  color: var(--ink);
  border: 1px solid rgba(20,20,20,.18);
}
.btn.btn-ghost:hover{ border-color: rgba(201,162,39,.55); }

.btn.btn-gold{
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1a1a;
  border: 1px solid rgba(201,162,39,.40);
}
.btn.btn-gold:hover{ filter: brightness(1.02); }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* tablet / mały desktop -> 3 w rzędzie */
@media (min-width: 700px){
  .gallery{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* duży desktop dalej 3 w rzędzie, ale większe kafle */
@media (min-width: 1100px){
  .gallery{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.gallery a{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line-soft);
  background: rgba(255,255,255,.45);
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.gallery img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .18s ease;
}
.gallery a:hover img{ transform: scale(1.02); }
.gallery a:focus{ outline:none; box-shadow: var(--focus); }

.section-actions{
  margin-top:16px;
  display:flex;
  justify-content:center;
}

/* Lightbox */
.lightbox[hidden]{ display:none; }
.lightbox{ position:fixed; inset:0; z-index:999; }
.lightbox__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.58); }
.lightbox__dialog{
  position:relative;
  width:min(92vw, 980px);
  margin: 6vh auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  border:1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  overflow:hidden;
}
.lightbox__close{
  position:absolute;
  top:10px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(20,20,20,.14);
  background: rgba(255,255,255,.82);
  cursor:pointer;
  font-size: 26px;
  line-height: 1;
}
.lightbox__close:focus{ outline:none; box-shadow: var(--focus); }
.lightbox__figure{ margin:0; padding: 14px; }
.lightbox__img{
  width:100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 16px;
  border:1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.70);
}
.lightbox__cap{ margin-top:10px; color: var(--muted); font-size: 14px; }
.lightbox__nav{ display:flex; gap:10px; padding: 0 14px 14px; justify-content:flex-end; }

/* Contact */
.contact{ padding: 18px; }
.contact-form .grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 820px){
  .contact{ padding: 22px; }
  .contact-form .grid{ grid-template-columns: 1fr 1fr; }
  .field-full{ grid-column: 1 / -1; }
}

.field label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
}
.field input,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(20,20,20,.14);
  background: rgba(255,255,255,.80);
  color: var(--ink);
  font: inherit;
}
.field input:focus,
.field textarea:focus{
  outline:none;
  box-shadow: var(--focus);
  background: #fff;
}

.form-actions{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}
.form-note{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}
.form-note a{
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,.55);
  text-underline-offset: 3px;
}

.honeypot{
  position:absolute !important;
  left:-9999px !important;
  width:1px; height:1px;
  overflow:hidden;
}

.footer-mini{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  color: var(--muted);
  font-size: 14px;
}
.footer-link{
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,.55);
  text-underline-offset: 3px;
}
.footer-link:hover{ text-decoration-color: rgba(201,162,39,.85); }

.site-footer{
  border-top:1px solid var(--line-soft);
  padding: 18px 0;
  background: rgba(255,255,255,.25);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: var(--muted);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .gallery img{ transition:none; }
  .btn{ transition:none; }
}
/* Process section */
.process{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:start;
}

.process-copy{
  color: var(--muted);
}

.process-copy p{
  max-width: 70ch;
}

.process-tags{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,20,20,.10);
  color: rgba(20,20,20,.78);
  font-size: 13px;
  line-height: 1;
}

/* Base media container */
.process-media{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Card */
.shot{
  margin:0;
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.40);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
  transform: translateY(0);
}

@media (min-width: 820px){
  .shot:hover{
    transform: translateY(-2px);
  }
}

/* Caption */
@media (max-width: 520px){
  .shot img{ height: 280px; }
}

..shot img{
  width: 100%;
  display: block;
  height: 360px;       /* wysokość kafla */
  object-fit: cover;   /* wypełnia kafel */
  object-position: center;
}

/* Optional richer caption when you use <strong> + <span> */
.shot-cap strong{
  display:block;
  font-size: 14px;
  color: rgba(20,20,20,.82);
  margin-bottom: 6px;
}

.shot-cap span{
  display:block;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(20,20,20,.68);
  max-width: 60ch;
}

/* Steps layout: centered, stacked */
.process-steps{
  justify-items: center; /* wycentrowanie kafli */
  gap: 16px;
}

.process-steps .shot{
  width: 100%;
  max-width: 760px;      /* premium szerokość na desktop */
}

/* Desktop */
@media (min-width: 820px){
  .process{
    grid-template-columns: 1fr; /* tekst + media pod spodem */
    gap: 18px;
  }

  .process-copy{
    max-width: 76ch;
  }

  /* jeśli masz process-steps, to NIE robimy 2 kolumn */
  .process-steps{
    grid-template-columns: 1fr; /* jeden pod drugim */
    gap: 18px;
  }

  /* gdybyś kiedyś użył .process-media bez .process-steps, nadal działa */
  .process-media:not(.process-steps){
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
/* Behind the scenes */
.bts-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.bts-card{
  display:block;
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.55);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  text-decoration:none;
  color: inherit;
  transform: translateY(0);
}

.bts-card img{
  width:100%;
  display:block;
  /* sensowny kafel na mobile, bez “pustki” */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.bts-cap{
  padding: 12px 14px;
  border-top: 1px solid var(--line-soft);
  background: rgba(255,255,255,.68);
}

.bts-cap strong{
  display:block;
  font-size: 14px;
  line-height: 1.2;
}

.bts-cap span{
  display:block;
  margin-top: 3px;
  font-size: 13px;
  color: rgba(20,20,20,.72);
}

@media (min-width: 820px){
  .bts-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .bts-card:hover{
    transform: translateY(-2px);
  }
}
/* Lightbox */
.lb{
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.lb.is-open{ display:flex; }

.lb__panel{
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  position: relative;
}

.lb__imgwrap{
  background: rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.lb__img{
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  display:block;
}

.lb__cap{
  padding: 12px 14px;
  font-size: 14px;
  color: rgba(20,20,20,.75);
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
}

.lb__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  line-height: 1;
  cursor:pointer;
}

.lb__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  cursor:pointer;
}

.lb__prev{ left: 10px; }
.lb__next{ right: 10px; }

@media (max-width: 520px){
  .lb{ padding: 12px; }
  .lb__panel{ border-radius: 16px; }
  .lb__img{ max-height: calc(100vh - 170px); }
}
/* BTS Lightbox */
.bts-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.70);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}
.bts-overlay.is-open{ display:flex; }

.bts-panel{
  width:min(980px, 100%);
  max-height: calc(100vh - 32px);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 26px 80px rgba(0,0,0,.38);
  position:relative;
}

.bts-close{
  position:absolute;
  top:10px;
  right:10px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.bts-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  font-size:22px;
  cursor:pointer;
}
.bts-prev{ left:10px; }
.bts-next{ right:10px; }

.bts-imgwrap{
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.06);
}
.bts-img{
  max-width:100%;
  max-height: calc(100vh - 150px);
  width:auto;
  height:auto;
  display:block;
}

.bts-cap{
  padding:12px 14px;
  font-size:14px;
  color:rgba(20,20,20,.75);
  border-top:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.92);
}
/* ===== Footer (premium) ===== */

.site-footer{
  position: relative;
  padding: 26px 0 30px;
  margin-top: 22px;
  background: transparent;
}

/* delikatna linia + złoty akcent */
.site-footer::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(20,20,20,.10);
}

.site-footer::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201,162,39,0),
    rgba(201,162,39,.95),
    rgba(201,162,39,0)
  );
}

/* układ */
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* lewa strona */
.footer-copy{
  margin:0;
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(20,20,20,.55);
}

/* prawa strona */
.footer-links{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a{
  position: relative;
  color: rgba(20,20,20,.75);
  text-decoration: none;
  padding-bottom: 2px;
}

.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background: rgba(20,20,20,.18);
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .18s ease, background .18s ease;
}

.footer-links a:hover::after{
  transform: scaleX(1);
  background: rgba(201,162,39,.75);
}

/* kropka pomiędzy linkami */
.footer-links .dot{
  color: rgba(20,20,20,.28);
}

/* mobile: wszystko ładnie pod sobą i na środku */
@media (max-width: 640px){
  .footer-inner{
    justify-content:center;
    text-align:center;
  }

  .footer-links{
    justify-content:center;
  }
}
.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-status{ margin: 10px 0 14px; }
.status-ok, .status-bad{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.55);
}

.contact-card{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  padding: 18px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 760px){
  .form-grid{ grid-template-columns: 1fr 1fr; }
  .field-full{ grid-column: 1 / -1; }
}

.field label{
  display:block;
  font-size: 13px;
  opacity: .75;
  margin: 0 0 6px;
}

.field input, .field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 12px 12px;
  background: rgba(255,255,255,.8);
  outline: none;
}

.field input:focus, .field textarea:focus{
  border-color: rgba(0,0,0,.28);
}

.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  margin-top: 14px;
}

.form-note{
  margin: 0;
  font-size: 13px;
  opacity: .8;
}
#contact .check-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  width:100%;
  margin-top: 8px;
}

#contact .check-row input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

#contact .check-row label{
  margin: 0;
  text-align:left;
  color: var(--muted);
  line-height:1.35;
}
/* ===== Desktop nav: make it look premium ===== */
@media (min-width: 820px){

  .site-nav{
    gap: 10px; /* było 24px -> przy “pillach” lepiej mniejsze */
  }

  .site-nav a{
    position: relative;
    padding: 10px 12px;          /* większy “hit area” */
    border-radius: 999px;        /* pill */
    color: rgba(20,20,20,.78);
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  }

  .site-nav a:hover{
    background: rgba(201,162,39,.12);
    color: rgba(20,20,20,1);
    box-shadow: 0 0 0 1px rgba(201,162,39,.18) inset;
  }

  /* Active state for hash navigation (#about, #gallery...) */
  .site-nav a[aria-current="page"],
  .site-nav a.is-active{
    background: rgba(201,162,39,.18);
    color: rgba(20,20,20,1);
    box-shadow: 0 0 0 1px rgba(201,162,39,.28) inset;
  }
}

/* Slightly cleaner header look on strong backgrounds */
.site-header{
  background: rgba(255,255,255,.72);
}
html{
  scroll-padding-top: 90px;
}