@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('../fonts/playfair-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('../fonts/playfair-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --ink: #17201d;
  --muted: #63706b;
  --paper: #f8f7f3;
  --white: #fff;
  --green: #123129;
  --green-2: #1d4a3d;
  --deep: #071c17;
  --gold: #c7a85a;
  --gold-2: #e0cb91;
  --line: rgba(18, 49, 41, 0.13);
  --shadow: 0 18px 60px rgba(7, 28, 23, 0.12);
  --radius: 26px;
  --max: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--green-2);
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.12;
  margin: 0 0 0.6em;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}
p {
  margin: 0.6em 0 1.2em;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.1rem);
  color: #e8ecea;
  max-width: 720px;
}
.section-lead {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--muted);
}
.topbar {
  background: var(--deep);
  color: #e9efec;
  font-size: 0.84rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.topbar a:hover {
  color: var(--gold-2);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 49, 41, 0.08);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 188px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(14%) sepia(18%) saturate(1384%)
    hue-rotate(110deg) brightness(88%) contrast(90%);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
  padding: 11px 0;
}
.nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: 4px;
  background: var(--gold);
  transition: 0.25s;
}
.nav a:hover:after,
.nav a[aria-current="page"]:after {
  right: 0;
}
.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 12px 18px !important;
  border-radius: 999px;
}
.nav-cta:after {
  display: none;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  font-size: 1.4rem;
  color: var(--green);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}
.btn-primary {
  background: var(--gold);
  color: #16221d;
}
.btn-dark {
  background: var(--green);
  color: white;
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}
.btn-outline {
  border-color: var(--green);
  color: var(--green);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero {
  position: relative;
  min-height: min(810px, 86vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 1.1s ease;
  transform: scale(1.02);
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 9s ease forwards;
}
.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(5, 20, 16, 0.91),
      rgba(5, 20, 16, 0.54) 48%,
      rgba(5, 20, 16, 0.18)
    ),
    linear-gradient(0deg, rgba(5, 20, 16, 0.4), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 92px 0 8px;
  max-width: 1200px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-kicker {
  color: var(--gold-2);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 28px;
  font-size: 0.92rem;
  color: #e5ebe8;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
  font-size: 24px;
}
.hero-dots button.active {
  width: 40px;
  font-size: 24px;
  background: var(--gold);
  border-color: var(--gold);
}
.page-hero {
  background-image: linear-gradient(90deg,rgba(7,28,23,.93),rgba(7,28,23,.20)), url("../images/sala-jasna.jpg");
  background-image: linear-gradient(90deg,rgba(7,28,23,.93),rgba(7,28,23,.20)), image-set(url("../images/sala-jasna.avif") type("image/avif"),url("../images/sala-jasna.webp") type("image/webp"),url("../images/sala-jasna.jpg") type("image/jpeg"));
  background-position:center;
  background-size:cover;
  color: #fff;
  padding: 105px 0 96px;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  max-width: 960px;
}
.breadcrumbs {
  font-size: 0.86rem;
  color: #d8e1dd;
  margin-bottom: 26px;
}
.breadcrumbs a {
  color: var(--gold-2);
}
.section {
  padding: 92px 0;
}
.section-sm {
  padding: 60px 0;
}
.bg-white {
  background: white;
}
.bg-deep {
  background: var(--deep);
  color: white;
}
.bg-green {
  background: var(--green);
  color: white;
}
.bg-gold-soft {
  background: #f2ead5;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 470px;
  background: var(--green);
}
.media-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.media-frame:after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(7, 28, 23, 0.89);
  color: white;
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 280px;
}
.media-badge strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.feature-card,
.offer-card,
.menu-card,
.faq-item,
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  transition: 0.25s;
}
.feature-card:hover,
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #f2ead5;
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}
.feature-card p,
.offer-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.offer-card {
  position: relative;
  overflow: hidden;
}
.offer-card:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(199, 168, 90, 0.12);
  right: -32px;
  top: -36px;
}
.offer-card .link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: var(--green);
}
.band {
  padding: 34px 0;
  background: var(--gold);
  color: #17201d;
}
.band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.band h3 {
  margin: 0;
}
.band p {
  margin: 4px 0 0;
}
.band .btn {
  background: var(--green);
  color: white;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.stat {
  padding: 30px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 2rem;
}
.stat span {
  font-size: 0.86rem;
  color: #d6dfdb;
}
.parallax {
  position: relative;
  background-image: linear-gradient(rgba(7,28,23,.78),rgba(7,28,23,.78)), url("../images/stol-wieczor.jpg");
  background-image: linear-gradient(rgba(7,28,23,.78),rgba(7,28,23,.78)), image-set(url("../images/stol-wieczor.avif") type("image/avif"),url("../images/stol-wieczor.webp") type("image/webp"),url("../images/stol-wieczor.jpg") type("image/jpeg"));
  background-position:center;
  background-size:cover;
  background-attachment:fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
}
.parallax .container {
  max-width: 850px;
}
.parallax blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.25;
  margin: 0;
}
.parallax cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: var(--gold-2);
  font-weight: 800;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}
.tab-btn {
  border: 1px solid var(--line);
  background: #dfbf71;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--green);
  color: white;
}
.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.menu-card h3 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.dish-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dish-list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(18, 49, 41, 0.13);
}
.price {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--green);
  font-weight: 700;
}
.note {
  font-size: 0.86rem;
  color: var(--muted);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: steps;
}
.timeline-step {
  counter-increment: steps;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.timeline-step:before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 14px;
  border: 0;
  padding: 0;
  background: var(--green);
  overflow: hidden;
  border-radius: 20px;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:after {
  content: "Powiększ";
  position: absolute;
  right: 16px;
  bottom: 14px;
  background: rgba(7, 28, 23, 0.72);
  color: white;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s;
}
.gallery-item:hover:after {
  opacity: 1;
  transform: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 10, 0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  border-radius: 16px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}
.lightbox-close {
  right: 24px;
  top: 24px;
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}
.lightbox-caption {
  position: absolute;
  bottom: 25px;
  color: white;
  font-size: 0.9rem;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  border: 0;
  background: white;
  padding: 22px 24px;
  font-weight: 800;
  cursor: pointer;
}
.faq-a {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .faq-q span:last-child {
  transform: rotate(45deg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form .full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(18, 49, 41, 0.18);
  background: #fff;
  padding: 13px 14px;
  border-radius: 12px;
  outline: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 168, 90, 0.13);
}
.map {
  border: 0;
  width: 100%;
  height: 440px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.seo-local {
  background: #edf1ef;
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: 0 16px 16px 0;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pill {
  background: #eef2ef;
  border: 1px solid var(--line);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
}
.footer {
  background: #061813;
  color: #cbd7d1;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}
.footer-logo {
  width: 230px;
  height: 84px;
  margin-bottom: 18px;
}
.footer h3 {
  font-family: var(--sans);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #fff;
}
.footer a {
  display: block;
  margin: 8px 0;
}
.footer a.r4 {
  display: inline;
}
.footer a:hover {
  color: var(--gold-2);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.8rem;
  color: #91a39a;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 800;
  background: var(--gold);
  color: #12241e;
  border-radius: 999px;
  padding: 13px 17px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  display: none;
}
@keyframes kenburns {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}
@media (max-width: 900px) {
  .topbar {
    display: none;
  }
  .nav-wrap {
    height: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--paper);
    padding: 18px 24px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 10px;
  }
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    columns: 3;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .parallax {
    background-attachment: scroll;
  }
  .floating-call {
    display: block;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .section {
    padding: 68px 0;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding-top: 70px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 2.4rem);
  }
  .grid-3,
  .grid-4,
  .menu-grid,
  .timeline,
  .form {
    grid-template-columns: 1fr;
  }
  .form .full {
    grid-column: auto;
  }
  .band .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .media-frame {
    min-height: 360px;
  }
  .gallery-grid {
    columns: 2;
    column-gap: 10px;
  }
  .gallery-item {
    margin-bottom: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    padding: 80px 0 70px;
  }
  .actions .btn {
    width: 100%;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* SEO hub: Stypy + podstrony lokalne */
.localities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.locality-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.25s;
  min-height: 100%;
}
.locality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.locality-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}
.locality-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.locality-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.locality-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 16px;
}
.locality-card .link {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}
.locality-card.featured {
  grid-column: span 2;
}
.locality-card.featured img {
  height: 250px;
}
.locality-intro {
  max-width: 820px;
}
.local-nav {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.local-nav a {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}
.local-nav a:hover {
  border-color: var(--gold);
}
.photo-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  min-height: 480px;
}
.photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.gallery-note {
  max-width: 900px;
  color: var(--muted);
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
@media (max-width: 900px) {
  .localities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .locality-card.featured {
    grid-column: span 2;
  }
  .photo-pair {
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .localities-grid {
    grid-template-columns: 1fr;
  }
  .locality-card.featured {
    grid-column: auto;
  }
  .locality-card img,
  .locality-card.featured img {
    height: 220px;
  }
  .photo-pair {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .photo-pair img {
    height: 300px;
  }
}

/* Performance: responsive hero media */
.hero-slide picture,.hero-slide picture img{position:absolute;inset:0;width:100%;height:100%}
.hero-slide picture img{object-fit:cover}

/* Core Web Vitals / accessibility */
picture{display:block}
.gallery-item picture,.locality-card picture{width:100%}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .parallax{background-attachment:scroll}
}
@media (max-width: 900px){.parallax{background-attachment:scroll}}
