/* ==========================================================================
   Maier Ahlborn Polska — tokens
   ========================================================================== */
:root{
  --ink: #15130f;
  --ink-soft: #221f18;
  --paper: #f7f4ee;
  --paper-dim: #eee8db;
  --charcoal: #3a362e;
  --stone: #8a8375;
  --gold: #b4924f;
  --gold-light: #d8c393;
  --gold-line: rgba(180,146,79,.35);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Archivo', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 10vw, 128px);

  --radius-sm: 7px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-section: clamp(30px, 6vw, 60px);

  --header-h: 84px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; margin: 0; background: var(--ink); }
body{
  margin: 0;
  background-color: var(--paper);
  background-image:
    radial-gradient(1400px 900px at 96% 0%, rgba(180,146,79,.13), transparent 62%),
    radial-gradient(1200px 820px at -12% 86%, rgba(180,146,79,.10), transparent 60%);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--font-display); font-weight: 500; color: var(--ink); margin: 0; }
p{ margin: 0; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.section-title{
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  max-width: 20ch;
}

.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center{
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.section-head--center .section-title{ max-width: 32ch; }

.link-arrow{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover{ color: var(--gold); border-color: var(--gold); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-gold{ background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover{ background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-line{ background: transparent; color: var(--ink); border-color: var(--charcoal); }
.btn-line:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.find-us .btn-line, .reviews .btn-line{ border-color: var(--gold-line); }

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.stop-grid .reveal:nth-child(2){ transition-delay: .12s; }
.stop-grid .reveal:nth-child(3){ transition-delay: .24s; }
.gallery .reveal:nth-child(2){ transition-delay: .08s; }
.gallery .reveal:nth-child(3){ transition-delay: .16s; }
.gallery .reveal:nth-child(4){ transition-delay: .24s; }
.gallery .reveal:nth-child(5){ transition-delay: .32s; }
.reviews-grid .reveal:nth-child(2){ transition-delay: .12s; }
.reviews-grid .reveal:nth-child(3){ transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .pipe, .pipe-mouth{ animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  --nav-color: var(--paper);
  --nav-color-muted: rgba(247,244,238,.68);
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled{
  --nav-color: var(--ink);
  --nav-color-muted: var(--stone);
  background: var(--paper);
  border-bottom-color: var(--gold-line);
  box-shadow: 0 8px 24px rgba(21,19,15,.06);
}
.site-header.is-solid{
  --nav-color: var(--ink);
  --nav-color-muted: var(--stone);
  background: var(--paper);
  border-bottom-color: var(--gold-line);
}

.header-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{
  display: block;
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-line);
}
.brand-mark--fallback{
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-line);
}
.brand-word{
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--nav-color);
  letter-spacing: .01em;
  transition: color .4s var(--ease);
}
.brand-word em{ font-style: normal; color: var(--gold); }
.brand-dash{
  display: inline-block;
  width: 9px;
  height: 1px;
  margin: 0 3px;
  vertical-align: 0.28em;
  background: currentColor;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--nav-color);
}
.main-nav > a{
  position: relative;
  padding: 6px 0;
  color: var(--nav-color);
  transition: color .4s var(--ease);
}
.main-nav > a::after{
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: left .3s var(--ease), right .3s var(--ease);
}
.main-nav > a:hover::after,
.main-nav > a.is-active::after{ left: 0; right: 0; }
.main-nav > a.is-active{ color: var(--gold); }

.nav-drop{ position: relative; display: flex; align-items: center; gap: 4px; }
.nav-drop-trigger{ position: relative; padding: 6px 0; color: var(--nav-color); transition: color .4s var(--ease); }
.nav-drop-trigger::after{
  content: '';
  position: absolute;
  left: 50%; right: 50%; bottom: 0; height: 1px; background: var(--gold);
  transition: left .3s var(--ease), right .3s var(--ease);
}
.nav-drop-trigger:hover::after{ left: 0; right: 0; }
.nav-drop-trigger.is-active{ color: var(--gold); }
.nav-drop-trigger.is-active::after{ left: 0; right: 0; }
.nav-drop-chevron{ color: var(--nav-color-muted); padding: 6px 2px; transition: transform .3s var(--ease), color .3s var(--ease); }
.nav-drop-chevron svg{ display: block; }
.nav-drop.is-open .nav-drop-chevron{ transform: rotate(180deg); color: var(--gold); }

.nav-drop-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: var(--ink);
  padding: 10px 0;
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-drop-menu::before{
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--ink);
  border-radius: 2px;
  rotate: 45deg;
}
.nav-drop-menu a{
  display: block;
  padding: 10px 22px;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: 17px;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.nav-drop-menu a:hover{ color: var(--gold-light); padding-left: 27px; }
.nav-drop-menu a.nav-drop-menu__divider{ margin-top: 6px; padding-top: 16px; border-top: 1px solid rgba(180,146,79,.25); }
.nav-drop-menu a.is-active{ color: var(--gold); }

.nav-drop.is-open .nav-drop-menu{ opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (hover: hover){
  .nav-drop:hover .nav-drop-menu{ opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .nav-drop:hover .nav-drop-chevron{ transform: rotate(180deg); color: var(--gold); }
}

.menu-toggle{ display: none; width: 32px; height: 22px; position: relative; }
.menu-toggle span{
  position: absolute; left: 0; right: 0; height: 2px; background: var(--nav-color);
  border-radius: 999px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease), background-color .4s var(--ease);
}
.menu-toggle span:nth-child(1){ top: 0; }
.menu-toggle span:nth-child(2){ top: 10px; }
.menu-toggle span:nth-child(3){ top: 20px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ top: 10px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ top: 10px; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: min(860px, 92vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media__img{
  position: absolute;
  inset: -4%;
  background-image: url('../images/optimized/hero-bg.webp');
  background-size: cover;
  background-position: 64% 42%;
  filter: grayscale(1) contrast(1.06);
  animation: hero-kenburns 26s ease-in-out infinite alternate;
}
.hero-media__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(21,19,15,.95) 0%, rgba(21,19,15,.86) 30%, rgba(21,19,15,.5) 56%, rgba(21,19,15,.18) 84%),
    linear-gradient(0deg, rgba(21,19,15,.55) 0%, rgba(21,19,15,0) 26%);
}
@keyframes hero-kenburns{
  from{ transform: scale(1); }
  to{ transform: scale(1.09); }
}

.hero-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--header-h) + 40px) 0 clamp(64px, 9vw, 108px);
}
.hero-copy{ max-width: 620px; }
.hero-copy .eyebrow{ margin-bottom: 20px; color: var(--gold); }
.hero-copy h1{
  color: var(--paper);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 26px;
}
.hero-copy .lead{
  color: var(--paper-dim);
  max-width: 54ch;
  font-size: 16.5px;
  margin-bottom: 34px;
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero .btn-line{ border-color: rgba(247,244,238,.45); color: var(--paper); }
.hero .btn-line:hover{ background: var(--paper); color: var(--ink); border-color: var(--paper); }

.nameplate{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.nameplate i{
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: block;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .45; transform: scale(1.6); }
}

@media (prefers-reduced-motion: reduce){
  .hero-media__img{ animation: none; }
}

/* ==========================================================================
   Media placeholders — "blueprint" style, swap for real photos later
   ========================================================================== */
.media-frame{
  margin: 0;
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--gold-line) 0 1px, transparent 1px 14px),
    var(--paper-dim);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
}
.media-frame__inner{
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 12px;
}
.media-frame__label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.6;
}
.media-frame--photo{ background: var(--paper-dim); }
.media-frame--photo .media-frame__inner{
  inset: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: inherit;
  display: block;
}
.media-frame--photo .media-frame__inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Breadcrumbs (interior pages)
   ========================================================================== */
.breadcrumbs{ padding: clamp(20px, 4vw, 32px) 0 0; }
.breadcrumbs ol{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
}
.breadcrumbs li{ display: flex; align-items: center; color: var(--stone); }
.breadcrumbs li + li::before{
  content: "/";
  margin: 0 8px;
  color: var(--gold-line);
}
.breadcrumbs a{
  color: var(--stone);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.breadcrumbs a:hover{ color: var(--gold); }
.breadcrumbs li[aria-current="page"]{ color: var(--charcoal); }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{
  padding: clamp(150px, 20vw, 200px) 0 clamp(88px, 11vw, 128px);
}
.page-header-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .7fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.page-header h1{
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: 22px;
}
.page-header .lead{
  color: var(--charcoal);
  max-width: 56ch;
  font-size: 16.5px;
}
.page-header__media .media-frame{ aspect-ratio: 3 / 4; }

/* ==========================================================================
   Full gallery (realizacje)
   ========================================================================== */
.full-gallery{ padding: clamp(32px, 5vw, 56px) 0 clamp(88px, 11vw, 128px); }
.gallery-item{
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  text-align: left;
}
.gallery.gallery--full{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
}
.gallery.gallery--full .gallery-feature{ grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery.gallery--full .gallery-item:nth-child(2){ grid-column: 3 / 5; grid-row: 1 / 2; }
.gallery.gallery--full .gallery-item:nth-child(3){ grid-column: 3 / 4; grid-row: 2 / 3; }
.gallery.gallery--full .gallery-item:nth-child(4){ grid-column: 4 / 5; grid-row: 2 / 3; }
.gallery.gallery--full .gallery-item:nth-child(5){ grid-column: 1 / 2; grid-row: 3 / 4; }
.gallery.gallery--full .gallery-item:nth-child(6){ grid-column: 2 / 3; grid-row: 3 / 4; }
.gallery.gallery--full .gallery-item:nth-child(7){ grid-column: 3 / 5; grid-row: 3 / 4; }
.gallery.gallery--full .gallery-item:nth-child(8){ grid-column: 1 / 3; grid-row: 4 / 5; }
.gallery.gallery--full .gallery-item:nth-child(9){ grid-column: 3 / 5; grid-row: 4 / 5; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-dim);
  padding: clamp(80px, 10vw, 128px) 0;
  border-top: 1px solid rgba(180,146,79,.15);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
}
.cta-band--square{ border-radius: 0; }
.cta-band::before{
  content: '';
  position: absolute;
  top: 50%; left: 18%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(180,146,79,.16), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.cta-band-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.cta-band .eyebrow{ color: var(--gold); }
.cta-band .section-title{ color: var(--paper); margin-bottom: 20px; max-width: 16ch; }
.cta-band__copy p:not(.eyebrow){ color: var(--paper-dim); margin-bottom: 34px; max-width: 46ch; }
.cta-band__actions{ display: flex; flex-wrap: wrap; gap: 16px; }
.cta-band .btn-line{ border-color: rgba(247,244,238,.45); color: var(--paper); }
.cta-band .btn-line:hover{ background: var(--paper); color: var(--ink); border-color: var(--paper); }

.cta-band__brands{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(180,146,79,.04);
}
.cta-band__brands-title{
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-line);
}
.cta-band__brands a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--paper);
  border-bottom: 1px solid rgba(180,146,79,.16);
  transition: background-color .25s var(--ease), padding-left .25s var(--ease), color .25s var(--ease);
}
.cta-band__brands a:last-child{ border-bottom: 0; }
.cta-band__brands a span{ color: var(--gold); font-family: var(--font-mono); font-size: 14px; opacity: 0; transition: opacity .25s var(--ease); }
.cta-band__brands a:hover{ background: rgba(180,146,79,.08); padding-left: 30px; color: var(--gold-light); }
.cta-band__brands a:hover span{ opacity: 1; }
.cta-band__fact{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(180,146,79,.16);
}
.cta-band__fact:last-child{ border-bottom: 0; }
.cta-band__fact strong{ font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--paper); }
.cta-band__fact span{ font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--stone); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,19,15,.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 40px;
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox__stage{ max-width: min(880px, 82vw); width: 100%; }
.lightbox__frame{
  aspect-ratio: 4 / 5;
  width: 100%;
  max-height: 74vh;
  margin: 0 auto;
  background:
    repeating-linear-gradient(135deg, rgba(180,146,79,.3) 0 1px, transparent 1px 16px),
    var(--ink-soft);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  padding: 24px;
}
.lightbox__frame img{ width: 100%; height: 100%; object-fit: cover; }
.lightbox__frame span{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
}
.lightbox__label{
  text-align: center;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
}
.lightbox__counter{
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--stone);
}
.lightbox__close,
.lightbox__nav{
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--paper);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover{ background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox__close{ position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; }
.lightbox__nav{ position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox__prev{ left: 24px; }
.lightbox__next{ right: 24px; }

/* ==========================================================================
   Product detail modal — okno ze szczegółami produktu, otwierane po kliknięciu
   w kartę produktu. Karta dostarcza treść (zdjęcia, nazwa, opis, cena) przez JS,
   więc znacznik jest jeden na stronę i wspólny dla wszystkich kart.
   ========================================================================== */
.product-card{ cursor: pointer; }
.product-modal{
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,19,15,.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 32px;
}
.product-modal.is-open{ opacity: 1; visibility: visible; pointer-events: auto; }
.product-modal__panel{
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  max-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(21,19,15,.4);
}
.product-modal__media{ position: relative; aspect-ratio: 1 / 1; background: var(--paper-dim); }
.product-modal__slides{ position: relative; width: 100%; height: 100%; }
.product-modal__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
}
.product-modal__slide.is-active{ opacity: 1; visibility: visible; }
.product-modal__slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.product-modal__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(21,19,15,.55);
  color: var(--paper);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background-color .25s var(--ease);
}
.product-modal__arrow:hover{ background: var(--gold); color: var(--ink); }
.product-modal__arrow--prev{ left: 14px; }
.product-modal__arrow--next{ right: 14px; }
.product-modal__dots{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.product-modal__dots button{
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247,244,238,.65);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.product-modal__dots button.is-active{ background: var(--gold); transform: scale(1.35); }
.product-modal__close{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.product-modal__close:hover{ background: var(--gold); color: var(--ink); border-color: var(--gold); }
.product-modal__scroll{ padding: 44px 44px 40px; overflow-y: auto; max-height: 86vh; }
.product-modal__title{ font-size: 27px; line-height: 1.2; margin-bottom: 14px; }
.product-modal__desc{ color: var(--charcoal); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.product-modal__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--gold-line);
  margin-bottom: 28px;
}
.product-modal__price{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-modal__more{ padding-top: 24px; border-top: 1px dashed var(--gold-line); }
.product-modal__more-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.product-modal__more-text{ color: var(--stone); font-size: 14px; line-height: 1.7; }
.spec-list{ display: grid; gap: 12px; }
.spec-list > div{ display: grid; grid-template-columns: 112px 1fr; gap: 14px; }
.spec-list dt{
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 2px;
}
.spec-list dd{ margin: 0; color: var(--charcoal); font-size: 14px; line-height: 1.6; }

/* ==========================================================================
   Product series section
   ========================================================================== */
.series-section{ position: relative; overflow: hidden; padding: var(--section-y) 0; }
.series-section--dim{ background: var(--ink); border-top: 1px solid rgba(180,146,79,.15); border-radius: var(--radius-section) var(--radius-section) 0 0; }
.series-section--dim .section-title{ color: var(--paper); }
.series-section--dim::before{
  content: '';
  position: absolute;
  top: -12%; right: -8%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(180,146,79,.13), transparent 68%);
  z-index: 0;
}
.series-section::after{
  content: '';
  position: absolute;
  bottom: -15%; left: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(180,146,79,.08), transparent 68%);
  z-index: 0;
}
.series-section > .wrap{ position: relative; z-index: 1; }
.series-section .section-head{ margin-bottom: clamp(32px, 5vw, 48px); }
.series-section .section-head .lead{ max-width: 62ch; margin: 0 auto; color: var(--charcoal); }
.series-section .section-head .eyebrow{
  font-size: 17px;
  letter-spacing: .1em;
  font-weight: 500;
  margin-bottom: 16px;
}
.series-section--dim .section-head .lead{ color: var(--paper-dim); }

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.product-grid--single{ grid-template-columns: minmax(0, 480px); justify-content: center; }
.product-card{
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover{ box-shadow: 0 20px 38px rgba(21,19,15,.1); border-color: var(--gold); }
.product-card__media{ position: relative; aspect-ratio: 1 / 1; background: var(--paper-dim); }
.product-card__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
}
.product-card__slide.is-active{ opacity: 1; visibility: visible; }
.product-card__slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__placeholder{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  background:
    repeating-linear-gradient(135deg, var(--gold-line) 0 1px, transparent 1px 14px),
    var(--paper-dim);
}
.product-card__placeholder span{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.6;
}
.product-card__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(21,19,15,.55);
  color: var(--paper);
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .25s var(--ease), visibility .25s, background-color .25s var(--ease);
  z-index: 2;
}
@media (hover: hover){
  .product-card__arrow{ opacity: 0; visibility: hidden; }
  .product-card__media:hover .product-card__arrow,
  .product-card__media:focus-within .product-card__arrow{ opacity: 1; visibility: visible; }
}
.product-card__arrow:hover{ background: var(--gold); color: var(--ink); }
.product-card__arrow--prev{ left: 12px; }
.product-card__arrow--next{ right: 12px; }
.product-card__dots{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.product-card__dots button{
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247,244,238,.55);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.product-card__dots button.is-active{ background: var(--gold); transform: scale(1.35); }
.product-card__body{ padding: 28px 28px 26px; }
.product-card__body h3{ font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
.product-card__body p{ color: var(--charcoal); font-size: 14.5px; line-height: 1.65; margin-bottom: 22px; }
.product-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--gold-line);
}
.product-card__price{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   Coming soon overlay — dla podstron bez jeszcze uzupełnionych produktów
   (Nagłośnienie, Akcesoria, Sprzęt używany). Zasłania placeholdery w <main>
   bez ich usuwania, zostawiając nagłówek i stopkę w pełni klikalne.
   ========================================================================== */
main.has-overlay{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  max-height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.coming-soon-overlay{
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--gutter);
  background: rgba(21,19,15,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.coming-soon-overlay__inner{
  max-width: 540px;
  text-align: center;
}
.coming-soon-overlay__inner .eyebrow{ justify-content: center; }
.coming-soon-overlay__inner h2{
  color: var(--paper);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.coming-soon-overlay__inner p{ color: var(--paper-dim); margin-bottom: 32px; }
.coming-soon-overlay__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.coming-soon-overlay .btn-line{ border-color: rgba(247,244,238,.45); color: var(--paper); }
.coming-soon-overlay .btn-line:hover{ background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ==========================================================================
   About
   ========================================================================== */
.about{ position: relative; overflow: hidden; padding: var(--section-y) 0; }
.about::before{
  content: '';
  position: absolute;
  top: 25%; left: -8%;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(180,146,79,.13), transparent 68%);
  z-index: 0;
}
.about > .wrap{ position: relative; z-index: 1; }
.about-grid{
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.about-media{ position: relative; padding-bottom: 20%; }
.about-media .media-frame--portrait{ aspect-ratio: 3 / 4; }
.about-media .media-frame--small{
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(135deg, var(--gold-line) 0 1px, transparent 1px 14px),
    var(--paper);
  box-shadow: 0 18px 40px rgba(21,19,15,.14);
}
.about-media .media-frame--small.media-frame--photo{ background: var(--paper-dim); box-shadow: 0 18px 40px rgba(21,19,15,.14); }
.about-copy h2{ font-size: clamp(26px, 3vw, 34px); line-height: 1.2; margin-bottom: 20px; max-width: 18ch; }
.about-copy p{ color: var(--charcoal); margin-bottom: 26px; max-width: 58ch; }

/* ==========================================================================
   Feature row — na przemian tekst/zdjęcie, do stron z dużą ilością treści
   (np. "O firmie"); .feature-row--reverse zamienia strony
   ========================================================================== */
.feature-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.feature-row__media{ order: 1; }
.feature-row__copy{ order: 2; }
.feature-row--reverse .feature-row__media{ order: 2; }
.feature-row--reverse .feature-row__copy{ order: 1; }
.feature-row__media .media-frame{ aspect-ratio: 4 / 5; }
.feature-row__copy .eyebrow{ margin-bottom: 14px; color: var(--gold); }
.feature-row__copy h2{ font-size: clamp(24px, 2.8vw, 32px); line-height: 1.2; margin-bottom: 18px; max-width: 20ch; color: var(--ink); }
.feature-row__copy p:not(.eyebrow){ color: var(--charcoal); margin-bottom: 18px; max-width: 58ch; }
.feature-row__copy p:last-child{ margin-bottom: 0; }
.series-section--dim .feature-row__copy h2,
.services .feature-row__copy h2{ color: var(--paper); }
.series-section--dim .feature-row__copy p:not(.eyebrow),
.services .feature-row__copy p:not(.eyebrow){ color: var(--paper-dim); }
.feature-row + .feature-row{ margin-top: clamp(56px, 8vw, 96px); }
.services .feature-row{ position: relative; z-index: 1; }

/* ==========================================================================
   Services — "stop tab" cards
   ========================================================================== */
.services{ position: relative; overflow: hidden; margin: 0 clamp(12px, 4vw, 56px); padding: var(--section-y) 0; background: var(--ink); border-top: 1px solid rgba(180,146,79,.15); border-radius: var(--radius-section); }
.services .section-title{ color: var(--paper); }
.services::before{
  content: '';
  position: absolute;
  top: -15%; right: -10%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(180,146,79,.15), transparent 68%);
  z-index: 0;
}
.services::after{
  content: '';
  position: absolute;
  bottom: -20%; left: -8%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(180,146,79,.09), transparent 68%);
  z-index: 0;
}
.services > .wrap{ position: relative; z-index: 1; }
.stop-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.stop-tab{
  background: var(--paper-dim);
  padding: 44px 32px 32px;
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stop-tab:hover{
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(21,19,15,.1);
}
.stop-tab__label{
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: transform .3s var(--ease);
}
.stop-tab h3{ font-size: 22px; line-height: 1.25; margin: 20px 0 14px; max-width: 22ch; }
.stop-tab p{ color: var(--charcoal); margin-bottom: 22px; }
.stop-tab:hover{ background: var(--paper); }
.stop-tab:hover .stop-tab__label{ transform: translateY(-58%); }
.stop-tab__list{ margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.stop-tab__list li{ position: relative; padding-left: 20px; font-size: 14.5px; color: var(--charcoal); }
.stop-tab__list li::before{ content: ''; position: absolute; left: 0; top: 10px; width: 10px; height: 1px; background: var(--gold); }
.stop-tab .btn{ margin-top: 4px; }

/* ==========================================================================
   Brands section
   ========================================================================== */
.brands-section{ position: relative; overflow: hidden; padding: var(--section-y) 0; }
.brands-section::before{
  content: '';
  position: absolute;
  top: -8%; right: -10%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(180,146,79,.12), transparent 68%);
  z-index: 0;
}
.brands-section > .wrap{ position: relative; z-index: 1; }
.brand-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.brand-grid .stop-tab h3{ font-family: var(--font-display); font-size: 28px; }
.brand-grid .stop-tab{ background: var(--ink); }
.brand-grid .stop-tab:hover{ background: var(--ink); }
.brand-grid .stop-tab h3{ color: var(--paper); }
.brand-grid .stop-tab p{ color: var(--paper-dim); }
.brand-grid .stop-tab .btn-line{ border-color: rgba(247,244,238,.45); color: var(--paper); }
.brand-grid .stop-tab .btn-line:hover{ background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ==========================================================================
   Projects / gallery
   ========================================================================== */
.projects{ padding: var(--section-y) 0; }
.projects .section-head{ align-items: flex-end; }
.gallery{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 18px;
}
.gallery .media-frame{ aspect-ratio: auto; width: 100%; height: 100%; }
.gallery-feature{ grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery > .media-frame:nth-child(2){ grid-column: 3 / 5; grid-row: 1 / 2; }
.gallery > .media-frame:nth-child(3){ grid-column: 3 / 4; grid-row: 2 / 3; }
.gallery > .media-frame:nth-child(4){ grid-column: 4 / 5; grid-row: 2 / 3; }
.gallery > .media-frame:nth-child(5){ grid-column: 1 / 3; grid-row: 3 / 4; }
.gallery > .media-frame:nth-child(6){ grid-column: 3 / 5; grid-row: 3 / 4; }
.gallery .media-frame{ transition: border-color .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease); }
.gallery .media-frame:hover{
  border-color: var(--gold);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 22px 40px rgba(21,19,15,.14);
}
.gallery .media-frame:hover .media-frame__inner{ border-color: var(--gold); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews{ position: relative; padding: var(--section-y) 0; overflow: hidden; }
.reviews::before{
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 840px; height: 840px;
  border: 1px solid rgba(180,146,79,.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.reviews-inner{ position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.reviews-carousel{
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.reviews-grid{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 40px;
  padding: 4px 40px 20px;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar{ display: none; }
.reviews-grid .review-card{
  flex: 0 0 clamp(260px, 32vw, 340px);
  scroll-snap-align: start;
}
.reviews-nav{ display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.reviews-arrow{
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--ink);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.reviews-arrow:hover{ background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.review-card{
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 320px;
  background: var(--ink);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.review-card:hover{
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 30px rgba(21,19,15,.18);
}
.review-stars{ color: var(--gold); letter-spacing: .1em; font-size: 15px; display: block; margin-bottom: 16px; flex-shrink: 0; }
.review-card p{
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--paper);
  margin: 0 0 16px;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 6px;
}
.review-card footer{ flex-shrink: 0; }
.review-card footer{ font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }

/* ==========================================================================
   Find us / contact
   ========================================================================== */
.find-us{
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-dim);
  padding: clamp(80px, 10vw, 128px) 0;
  border-top: 1px solid rgba(180,146,79,.15);
}
.find-us::before{
  content: '';
  position: absolute;
  top: 50%; left: 16%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(180,146,79,.16), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.find-us-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.find-us .eyebrow{ color: var(--gold); }
.find-us .section-title{ color: var(--paper); margin-bottom: 20px; }
.find-us .address{ font-size: 18px; line-height: 1.6; color: var(--paper-dim); margin-bottom: 34px; }
.find-us-map{
  aspect-ratio: 4 / 3.2;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.find-us-map iframe{
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(.7) sepia(.15) contrast(1.05) brightness(.95);
  transition: filter .5s var(--ease);
}
.find-us-map:hover iframe, .find-us-map:focus-within iframe{ filter: none; }

/* ==========================================================================
   Contact page — form + info + map
   ========================================================================== */
.contact-main{
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-dim);
  padding: var(--section-y) 0;
  border-top: 1px solid rgba(180,146,79,.15);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
}
.contact-main::before{
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(180,146,79,.14), transparent 68%);
  z-index: 0;
}
.contact-main > .wrap{ position: relative; z-index: 1; }

.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 72px);
}
.contact-form-panel .eyebrow{ color: var(--gold); }
.contact-form-panel .section-title{ color: var(--paper); margin-bottom: 14px; }
.contact-form-panel > p:not(.eyebrow){ color: var(--paper-dim); margin-bottom: 32px; max-width: 54ch; }

.contact-form{ display: flex; flex-direction: column; gap: 20px; }
.form-row{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field{ display: flex; flex-direction: column; gap: 8px; }
.form-field label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-field input,
.form-field select,
.form-field textarea{
  background: rgba(247,244,238,.04);
  border: 1px solid rgba(180,146,79,.3);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--paper);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color: var(--stone); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--gold);
  background: rgba(247,244,238,.06);
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-field select{
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B4924F' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-consent{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--paper-dim);
  cursor: pointer;
}
.form-consent input{ margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--gold); }
.form-honeypot{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn{ align-self: flex-start; margin-top: 4px; }
.form-status{ font-family: var(--font-mono); font-size: 12.5px; margin: 0; min-height: 1.2em; }
.form-status.success{ color: #9dbf8f; }
.form-status.error{ color: #c98a7a; }

.contact-info{ display: flex; flex-direction: column; gap: 24px; }
.cta-band__fact strong a{ color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .25s var(--ease), color .25s var(--ease); }
.cta-band__fact strong a:hover{ color: var(--gold-light); border-color: var(--gold-line); }

.contact-map{ aspect-ratio: 21 / 7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--ink); color: var(--paper-dim); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(180,146,79,.2);
}
.footer-brand .brand-mark{ margin-bottom: 16px; }
.footer-brand .brand-word{ color: var(--paper); display: block; margin-bottom: 14px; }
.footer-brand p{ color: var(--stone); max-width: 32ch; font-size: 14px; }
.footer-nav, .footer-contact{ display: flex; flex-direction: column; gap: 12px; }
.footer-nav__title{ font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-nav a, .footer-contact p{ color: var(--paper-dim); font-size: 14.5px; }
.footer-nav a{ transition: color .2s var(--ease); }
.footer-nav a:hover{ color: var(--gold-light); }
.footer-contact p{ color: var(--stone); line-height: 1.6; }
.footer-contact .link-arrow{ color: var(--paper); border-color: rgba(180,146,79,.4); }
.footer-contact .link-arrow:hover{ color: var(--gold); }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--gutter);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--stone);
}
.footer-bottom__top{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.footer-bottom__top:hover{ gap: 10px; color: var(--gold); }
.footer-bottom__top span{ display: inline-block; transition: transform .25s var(--ease); }
.footer-bottom__top:hover span{ transform: translateY(-3px); }
.footer-bottom__credit{ margin: 0; color: var(--stone); }
.footer-bottom__credit a{ color: var(--paper-dim); text-decoration: none; border-bottom: 1px solid rgba(180,146,79,.4); transition: color .25s var(--ease), border-color .25s var(--ease); }
.footer-bottom__credit a:hover{ color: var(--gold); border-color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .main-nav{
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px var(--gutter) 40px;
    gap: 26px;
    font-size: 16px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav > a, .nav-drop-trigger{ color: var(--charcoal); }
  .nav-drop-chevron{ color: var(--stone); }
  .nav-drop{ flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-drop-menu{
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transition: max-height .35s var(--ease);
  }
  .nav-drop-menu::before{ display: none; }
  .nav-drop.is-open .nav-drop-menu{ max-height: 500px; transform: none; }
  .nav-drop-menu a{ color: var(--charcoal); padding: 8px 0; }
  .nav-drop-menu a:hover{ padding-left: 8px; color: var(--gold); }
  .nav-drop-menu a.nav-drop-menu__divider{ margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--gold-line); }
  .menu-toggle{ display: block; }

  .hero{ min-height: min(640px, 86vh); align-items: center; }
  .hero-inner{ padding-left: var(--gutter); padding-right: var(--gutter); }
  .hero-copy{ max-width: 100%; text-align: center; }
  .hero-copy h1{ text-align: left; }
  .hero-copy .lead{ text-align: left; }
  .hero-cta{ justify-content: center; }

  .page-header-grid{ grid-template-columns: 1fr; }
  .page-header__media{ width: 100%; max-width: 380px; margin: 0 auto; }

  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ width: 100%; padding-bottom: 22%; max-width: 420px; margin: 0 auto; }
  .about-media .media-frame--small{ right: 0; }

  .feature-row{ grid-template-columns: 1fr; }
  .feature-row__media{ order: 1 !important; }
  .feature-row__copy{ order: 2 !important; }
  .feature-row__media .media-frame{ max-width: 420px; margin: 0 auto; }

  #realizacje .section-head{ flex-direction: column; align-items: center; text-align: center; }
  #realizacje .gallery > .media-frame:nth-child(6){ display: none; }

  .cta-band-grid{ grid-template-columns: 1fr; }
  .cta-band .section-title{ max-width: 100%; }
  .cta-band__actions{ justify-content: center; }

  .stop-grid{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .brand-grid .stop-tab .btn{ display: flex; width: fit-content; margin: 0 auto; }
  .product-grid{ grid-template-columns: 1fr; gap: 24px; }
  .product-card__footer{ flex-direction: column; align-items: center; text-align: center; }

  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; gap: 20px; }
  .contact-map{ aspect-ratio: 4 / 5; }
  #cf-submit{ display: flex; width: fit-content; margin: 0 auto; }

  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 200px; grid-auto-flow: dense; }
  .gallery-feature{ grid-column: span 2 !important; grid-row: span 2 !important; }
  .gallery > .media-frame:nth-child(2),
  .gallery > .media-frame:nth-child(3),
  .gallery > .media-frame:nth-child(4),
  .gallery > .media-frame:nth-child(5),
  .gallery > .media-frame:nth-child(6){ grid-column: span 1 !important; grid-row: span 1 !important; }

  .reviews-grid .review-card{ flex-basis: 82vw; }
  .reviews-carousel{ mask-image: none; -webkit-mask-image: none; }

  .find-us-grid{ grid-template-columns: 1fr; }
  .find-us-copy .btn{ display: flex; width: fit-content; margin: 0 auto; }

  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-bottom{ flex-direction: column; justify-content: center; text-align: center; gap: 14px; }
  .footer-bottom__top{ justify-content: center; }

  .gallery.gallery--full{ grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 190px; grid-auto-flow: dense; }
  .gallery--full .gallery-feature,
  .gallery--full .gallery-feature-2{ grid-column: span 2 !important; grid-row: span 2 !important; }
  .gallery--full .gallery-item:not(.gallery-feature):not(.gallery-feature-2){ grid-column: span 1 !important; grid-row: span 1 !important; }

  .lightbox{ padding: 20px; }
  .lightbox__stage{ max-width: 100%; }
  .lightbox__close{ width: 38px; height: 38px; top: 12px; right: 12px; }
  .lightbox__nav{ width: 40px; height: 40px; }
  .lightbox__prev{ left: 8px; }
  .lightbox__next{ right: 8px; }

  .product-modal{ padding: 0; align-items: flex-end; }
  .product-modal__panel{
    grid-template-columns: 1fr;
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .product-modal__media{ aspect-ratio: 4 / 3; }
  .product-modal__scroll{ padding: 32px 24px 28px; max-height: none; }
  .spec-list > div{ grid-template-columns: 1fr; gap: 3px; }
}

/* Tablet only (nie telefony) — H1 szerszy, małe zdjęcie wraca do pozycji z desktopu */
@media (min-width: 561px) and (max-width: 980px){
  .hero-copy h1{ max-width: 26ch; }
  .about-media .media-frame--small{ right: -8%; }
}

/* Luka między breakpointem tabletu a wyśrodkowaniem .wrap na szerokim ekranie
   (np. tablet poziomo) — .hero-inner ma zerowy padding poziomy licząc na to,
   że margin:auto z .wrap wyśrodkuje treść, ale to nie działa dopóki viewport
   nie przekroczy --container (1180px), więc tu trzeba przywrócić gutter ręcznie. */
@media (min-width: 981px) and (max-width: 1180px){
  .hero-inner{ padding-left: var(--gutter); padding-right: var(--gutter); }
}

@media (max-width: 560px){
  :root{ --header-h: 72px; }
  .brand-word{ font-size: 18px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .section-head:not(.section-head--center){ flex-direction: column; align-items: flex-start; }

  .reviews-grid{ padding-left: 20px; padding-right: 20px; scroll-padding-left: 20px; }
}
