/* ==========================================
   STONE CRAFT PREMIUM — main.css
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* ==========================================
   CSS VARIABLES (Design System)
   ========================================== */
:root {
  --color-bg:           #000000;
  --color-bg-alt:       #0a0a0a;
  --color-gold-light:   #A57948;
  --color-gold-dark:    #72512C;
  --color-gold-mid:     #DAB975;
  --color-text:         #E9EAF5;
  --color-text-muted:   #C2C2C2;
  --color-text-meta:    #615F5F;
  --color-atuty-bg:     #A57948;
  --color-border-grey1: #8B8B8A;
  --color-border-grey2: #D0D0D0;
  --color-border-gold1: #DAB975;
  --color-border-gold2: #9C7A49;

  --gradient-btn:   linear-gradient(130deg, #A57948, #72512C);
  --gradient-frame: linear-gradient(0deg, #8B8B8A, #D0D0D0, #8B8B8A, #D0D0D0, #DAB975, #9C7A49);

  --font-main:          'Montserrat', sans-serif;
  --size-menu:          18px;
  --size-slide-hero:    80px;
  --size-heading-large: 48px;
  --size-heading-small: 24px;
  --size-body:          16px;
  --size-btn:           16px;
  --size-offer-label:   24px;
  --size-caption:       24px;
  --size-meta:          18px;
  --size-atuty:         18px;
  --size-footer-phone:  30px;
  --size-footer-mail:   24px;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;

  --section-padding:  100px 0;
  --container-width:  1400px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--size-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
picture { display: block; }
.sc-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  padding: 0; margin: 0;
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.sc-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(165,121,72,0.5);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s linear;
  mix-blend-mode: screen;
}

/* ==========================================
   CONTAINER
   ========================================== */
.sc-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.sc-overtitle {
  font-size: var(--size-heading-small);
  font-weight: var(--fw-medium);
  color: var(--color-gold-light);
  display: block;
  margin-bottom: 12px;
}
.sc-heading-lg {
  font-size: var(--size-heading-large);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.15;
}
.sc-heading-sm {
  font-size: var(--size-heading-small);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}
.sc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-btn);
  color: #fff;
  font-family: var(--font-main);
  font-size: var(--size-btn);
  font-weight: var(--fw-medium);
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 32px;
  border: none;
  cursor: pointer;
}
.sc-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.sc-btn img { width: 20px; height: 20px; object-fit: contain; }
.sc-btn-outline {
  background: transparent;
  border: 1px solid var(--color-gold-light);
  color: var(--color-gold-light);
  margin-top: 0;
}
.sc-btn-outline:hover { background: var(--gradient-btn); border-color: transparent; color: #fff; }

/* ==========================================
   CORNER FRAME
   ========================================== */
.sc-corner-frame {
  position: relative;
  display: inline-block;
  padding: 30px 50px;
}
.sc-corner-frame::before,
.sc-corner-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #A57948;
  border-style: solid;
}
.sc-corner-frame::before { top: 0;    left: 0;  border-width: 2px 0 0 2px; }
.sc-corner-frame::after  { display: none; }

/* ==========================================
   HEADER
   ========================================== */
#sc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s;
}
/* Blur via ::before — nie wpływa na position:fixed dzieci (nav-menu, backdrop) */
#sc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s;
}
.sc-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sc-header.scrolled {
  background: rgba(0,0,0,0.92);
}
#sc-header.scrolled::before { opacity: 1; }
.sc-logo { display: flex; align-items: center; }
.sc-logo img { max-width: 165px; height: auto; }
.sc-logo:hover { filter: drop-shadow(0 0 8px rgba(165,121,72,0.6)); transition: filter 0.4s; }

.sc-nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.sc-nav-menu a {
  font-size: var(--size-menu);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  transition: color 0.3s, text-shadow 0.3s;
}
.sc-nav-menu a:hover,
.sc-nav-menu a.current-menu-item {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(165,121,72,0.7), 0 0 28px rgba(218,185,117,0.35);
}

/* Mobile-only structural elements — hidden on desktop */
.sc-mobile-menu-top,
.sc-mobile-menu-footer,
.sc-mobile-menu-rule { display: none; }
.sc-mobile-menu-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.sc-mobile-submenu {
  display: none;
}
.sc-mobile-submenu-toggle {
  display: none;
}
.sc-mobile-submenu-panel {
  display: none;
}

.sc-header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sc-header-icons a img { width: 22px; height: 22px; object-fit: contain; }
.sc-header-icons a:hover img { filter: brightness(1.2); }

/* ==========================================
   HAMBURGER — premium animated button
   ========================================== */
.sc-hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  border-radius: 6px;
  z-index: 202;
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.4s ease;
}
.sc-hamburger::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: radial-gradient(ellipse at 50% 50%, rgba(165,121,72,0.1) 0%, transparent 72%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sc-hamburger:hover { border-color: rgba(165,121,72,0.35); }
.sc-hamburger:hover::before { opacity: 1; }
.sc-hamburger.open { border-color: rgba(165,121,72,0.55); }
.sc-hamburger.open::before { opacity: 1; }

.sc-hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  height: 1.5px;
  border-radius: 2px;
  background: var(--color-text);
  transform-origin: center;
  transition: width    0.45s cubic-bezier(0.4,0,0.2,1),
              transform 0.45s cubic-bezier(0.4,0,0.2,1),
              opacity   0.3s ease,
              background 0.3s ease,
              margin-left 0.45s cubic-bezier(0.4,0,0.2,1);
}
/* Dwie długie linie zewnętrzne + krótka linia akcentu w środku */
.sc-hamburger span:nth-child(1) { width: 26px; top: 14px; margin-left: -13px; }
.sc-hamburger span:nth-child(2) { width: 14px; top: 24px; margin-left: -7px; }
.sc-hamburger span:nth-child(3) { width: 26px; top: 34px; margin-left: -13px; }

/* Hover: środkowa linia rozszerza się do pełna + złoty kolor */
.sc-hamburger:hover span { background: var(--color-gold-mid); }
.sc-hamburger:hover span:nth-child(2) { width: 26px; margin-left: -13px; }

/* Open → X morph */
.sc-hamburger.open span { background: var(--color-gold-light); }
.sc-hamburger.open span:nth-child(1) {
  width: 22px; margin-left: -11px;
  transform: translateY(10px) rotate(45deg);
}
.sc-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
  margin-left: 0;
}
.sc-hamburger.open span:nth-child(3) {
  width: 22px; margin-left: -11px;
  transform: translateY(-10px) rotate(-45deg);
}

/* Nav backdrop */
.sc-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  cursor: pointer;
}
.sc-nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ==========================================
   HERO SLIDER
   ========================================== */
#sc-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.sc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}
.sc-slide.active { opacity: 1; transform: scale(1); }
.sc-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-slide-bg img,
.sc-slide-bg source { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sc-slide picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.sc-slide picture img { width: 100%; height: 100%; object-fit: cover; }
.sc-slide-overlay { display: none; }
.sc-slide-gradient { display: none; }
.sc-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: max(60px, calc((100% - var(--container-width)) / 2 + 60px));
  z-index: 2;
}
.slide-headline {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 0.6;
  width: 200%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55em;
}
.sc-slide-line {
  display: block;
  opacity: 0;
  transform: translateY(22px);
}
.sc-slide.active .sc-slide-line {
  animation: sc-line-in 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--line-i, 0) * 0.33s + 0.2s);
}
@keyframes sc-line-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ramka slidera — pełny prostokąt rysowany SVG */
.sc-slide-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: clamp(320px, 38vw, 560px);
  aspect-ratio: 1 / 1;
  padding: clamp(2rem, 4.5vw, 4.5rem);        /* góra / prawo / dół */
  padding-left: clamp(73.6px, 8.74vw, 128.8px); /* lewy = 23% szerokości ramki */
  position: relative;
  box-sizing: border-box;
}
.sc-slide-frame-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
.sc-slide-frame-path {
  fill: none;
  stroke: #A57948;
  stroke-width: 4;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}
/* Ukrycie CTA w sekcji hero — zgodne z projektem */
.sc-slide-frame .sc-slide-cta { display: none; }

/* Ukryty blok SVG defs (glow filter) */
.sc-svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }

/* Rozbłysk (spark) sunący po obrysie ramki */
.frame-spark {
  fill: none;
  stroke: #ffe1b0;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 80 1467;
  stroke-dashoffset: 1547;
  opacity: 0;
}

/* Slider controls */
.sc-slider-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}
.sc-slider-arrow {
  position: static;
  transform: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #A57948;
  padding: 12px;
  transition: transform 0.3s;
}
.sc-slider-arrow:hover { transform: scale(1.2); }
.sc-slider-arrow svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2; }

.sc-slider-dots {
  position: static;
  transform: none;
  display: flex;
  gap: 10px;
}
.sc-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(165,121,72,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.sc-slider-dot.active {
  background: #A57948;
  transform: scale(1.3);
}

/* ==========================================
   O FIRMIE
   ========================================== */
#sc-o-firmie {
  background: var(--color-bg);
  padding: 120px 60px;
}
.sc-o-firmie-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sc-o-firmie-photos {
  position: relative;
}

/* Kompozycja foto-animacja */
.sc-kompozycja {
  position: relative;
  aspect-ratio: 501 / 590;
  width: 100%;
}
.sc-ramka-svg {
  position: absolute;
  left: 6.4%;
  top: 3.4%;
  width: 86.2%;
  height: 96.1%;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}
.sc-ramka-path {
  fill: none;
  stroke: url(#sc-ramka-grad);
  stroke-width: 5;
  stroke-linejoin: miter;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.sc-foto {
  position: absolute;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
}
.sc-foto1 {
  left: 0;
  top: 14.6%;
  width: 47.9%;
  height: 81.2%;
}
.sc-foto2 {
  right: 0;
  top: 0.8%;
  width: 47.9%;
  height: 85.9%;
}
.sc-kompozycja.play .sc-ramka-path {
  animation: ramka-draw 1.9s ease 1.15s forwards;
}
.sc-kompozycja.play .sc-foto1 {
  animation: wjazd-dol 0.95s ease 0.1s forwards;
}
.sc-kompozycja.play .sc-foto2 {
  animation: wjazd-gora 0.95s ease 0.1s forwards;
}
@keyframes ramka-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes wjazd-dol {
  0%   { transform: translateY(60%); opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}
@keyframes wjazd-gora {
  0%   { transform: translateY(-60%); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}
.sc-o-firmie-text p {
  color: var(--color-text-muted);
  font-size: var(--size-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Liczniki */
.sc-counters {
  display: flex;
  gap: 0;
  margin: 40px 0;
  border-top: 1px solid rgba(165,121,72,0.2);
  border-bottom: 1px solid rgba(165,121,72,0.2);
  padding: 28px 0;
}
.sc-counter {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.sc-counter + .sc-counter::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(165,121,72,0.25);
}
.sc-counter-num {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: var(--fw-bold);
  line-height: 1;
  background: linear-gradient(135deg, #DAB975 0%, #A57948 60%, #72512C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(165,121,72,0.4));
}
.sc-counter-label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ==========================================
   OFERTA
   ========================================== */
#sc-oferta {
  background: var(--color-bg);
  padding-top: 80px;
  padding-bottom: 0;
}
.sc-offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 48px;
  padding: 0 20px;
  box-sizing: border-box;
}
.sc-offer-tile {
  display: block;
  position: relative;
  overflow: visible;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.sc-tile-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sc-tile-img-wrap picture,
.sc-tile-img-wrap picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.sc-offer-tile:hover .sc-tile-img-wrap picture img { transform: scale(1.06); }
.sc-offer-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  transition: opacity 0.4s;
  z-index: 1;
}
.sc-offer-tile:hover::after { opacity: 0.9; }
.sc-offer-title {
  margin-top: 50px;
  font-size: var(--size-offer-label);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-align: center;
  transition: color 0.3s;
}
.sc-offer-tile-wrap:hover .sc-offer-title { color: var(--color-gold-light); }

/* SVG ramka rysowana na hover kafelka oferty */
.offer-frame-svg {
  position: absolute;
  top: -5%;
  height: 110%;
  left: 5%;
  width: 90%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.offer-frame-path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-dasharray: 1464;
  stroke-dashoffset: 1464;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4,0,0.2,1);
}
.sc-offer-tile:hover .offer-frame-path {
  stroke-dashoffset: 0;
}

.sc-corner-accent {
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 20px;
  border-color: #DAB975;
  border-style: solid;
}
.sc-corner-accent.tl { top: -4px;    left: -4px;   border-width: 3px 0 0 3px; }
.sc-corner-accent.br { bottom: -4px; right: -4px;  border-width: 0 3px 3px 0; }

/* ==========================================
   REALIZACJE
   ========================================== */
#sc-realizacje {
  background: var(--color-bg);
  padding: 120px 0 140px;
}
.sc-rl-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: clamp(460px, 68vh, 780px);
  gap: 3px;
  margin-top: 64px;
  border-radius: 4px;
  overflow: hidden;
}
.sc-rl-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  min-height: 0;
}
.sc-rl-img-wrap {
  position: absolute;
  inset: 0;
}
.sc-rl-img-wrap picture,
.sc-rl-img-wrap picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.sc-rl-item:hover .sc-rl-img-wrap picture img { transform: scale(1.06); }
.sc-rl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 45%, transparent 75%);
  transition: opacity 0.4s;
  z-index: 1;
}
.sc-rl-item:hover .sc-rl-overlay { opacity: 1.1; }
.sc-rl-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}
.sc-rl-cat {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sc-rl-item:hover .sc-rl-cat {
  opacity: 1;
  transform: translateY(0);
}
.sc-rl-title {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.25;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.sc-rl-item.sc-rl-featured .sc-rl-title {
  font-size: clamp(20px, 2vw, 30px);
}
.sc-rl-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.sc-rl-item:hover .sc-rl-meta {
  opacity: 1;
  transform: translateY(0);
}
.sc-rl-meta span + span::before {
  content: '·';
  margin-right: 16px;
  color: var(--color-gold);
}
/* gold accent line bottom */
.sc-rl-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #DAB975, #9C7A49);
  z-index: 3;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.sc-rl-item:hover::after { width: 100%; }

/* ==========================================
   ATUTY
   ========================================== */
#sc-atuty {
  background: var(--color-atuty-bg);
  padding: 100px 60px;
}
.sc-atuty-overtitle {
  font-size: var(--size-heading-small);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  text-align: center;
  display: block;
}
.sc-atuty-heading {
  font-size: var(--size-heading-large);
  font-weight: var(--fw-bold);
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
.sc-atuty-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sc-atuty-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sc-atut {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.sc-atut picture { width: 132px; height: 132px; }
.sc-atut picture img { width: 132px; height: 132px; object-fit: contain; }
.sc-atut-label {
  font-size: var(--size-atuty);
  font-weight: var(--fw-medium);
  color: #fff;
  line-height: 1.4;
}
.sc-atuty-photo {
  position: relative;
  width: 420px;
}
.sc-atuty-photo picture img {
  width: 420px;
  height: 556px;
  object-fit: cover;
  display: block;
}
.sc-atuty-photo::before,
.sc-atuty-photo::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: rgba(255,255,255,0.6);
  border-style: solid;
}
.sc-atuty-photo::before { top: -8px;    left: -8px;   border-width: 2px 0 0 2px; }
.sc-atuty-photo::after  { bottom: -8px; right: -8px;  border-width: 0 2px 2px 0; }

/* ==========================================
   BANER KONTAKTOWY
   ========================================== */
#sc-baner {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-baner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(20,14,6,0.75) 50%, rgba(0,0,0,0.82) 100%);
  z-index: 0;
}
/* dekoracyjne ukośne linie */
.sc-baner-deco-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.sc-baner-deco-line {
  stroke: rgba(218,185,117,0.06);
  stroke-width: 1;
}
.sc-baner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 60px;
  max-width: 860px;
  width: 100%;
}
/* cienka złota linia na górze */
.sc-baner-top-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(218,185,117,0.6));
  margin: 0 auto 32px;
}
.sc-baner-overtitle {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 20px;
}
.sc-baner-heading {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 28px;
}
/* złota linia z kropką */
.sc-baner-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.sc-baner-rule::before,
.sc-baner-rule::after {
  content: '';
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(218,185,117,0.7));
}
.sc-baner-rule::after {
  background: linear-gradient(90deg, rgba(218,185,117,0.7), transparent);
}
.sc-baner-rule-dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #DAB975;
  box-shadow: 0 0 10px rgba(218,185,117,0.7);
}
.sc-baner-text {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.70);
  margin: 0 auto 48px;
  max-width: 560px;
  line-height: 1.8;
}
/* przycisk CTA */
.sc-baner-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 48px 18px 40px;
  border: 1px solid rgba(218,185,117,0.5);
  background: transparent;
  color: var(--color-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  transition: border-color 0.4s, color 0.4s;
}
.sc-baner-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #DAB975 0%, #A57948 60%, #72512C 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.sc-baner-btn:hover::before { transform: scaleX(1); }
.sc-baner-btn:hover { border-color: #DAB975; color: #fff; }
.sc-baner-btn-label,
.sc-baner-btn-arrow {
  position: relative;
  z-index: 1;
}
.sc-baner-btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.sc-baner-btn-arrow svg { width: 18px; height: 18px; }
.sc-baner-btn:hover .sc-baner-btn-arrow { transform: translateX(5px); }
/* metaliczny shimmer sweep */
.sc-baner-btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: translateX(-120%);
  z-index: 2;
  pointer-events: none;
  transition: transform 0s;
}
.sc-baner-btn:hover .sc-baner-btn-shimmer {
  transform: translateX(120%);
  transition: transform 0.55s ease;
}

/* ==========================================
   STOPKA
   ========================================== */
#sc-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(218,185,117,0.12), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0a0908 46%, #000 100%);
  border-top: 1px solid rgba(218,185,117,0.24);
}
#sc-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.26), rgba(0,0,0,0.8)),
    image-set(
      url('../images/baner_tlo_kamien.avif') type('image/avif'),
      url('../images/baner_tlo_kamien.webp') type('image/webp'),
      url('../images/baner_tlo_kamien.png') type('image/png')
    ) center/cover;
  opacity: 0.24;
  pointer-events: none;
}
#sc-footer::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218,185,117,0.74), transparent);
  pointer-events: none;
}
.sc-footer-shell {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 76px 60px 24px;
}
.sc-footer-topline {
  width: min(620px, 100%);
  height: 1px;
  margin: 0 auto 44px;
  background: linear-gradient(90deg, transparent, #72512C, #DAB975, #72512C, transparent);
  box-shadow: 0 0 28px rgba(218,185,117,0.3);
}
.sc-footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(218,185,117,0.16);
}
.sc-footer-brand {
  max-width: 660px;
}
.sc-footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
}
.sc-footer-logo picture,
.sc-footer-logo img {
  width: 210px;
}
.sc-footer-brand p {
  max-width: 620px;
  color: rgba(233,234,245,0.82);
  font-size: 18px;
  line-height: 1.85;
}
.sc-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.sc-footer-eyebrow,
.sc-footer-kicker {
  color: var(--color-gold-mid);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sc-footer-phone {
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}
.sc-footer-phone:hover {
  color: var(--color-gold-mid);
  text-shadow: 0 0 22px rgba(218,185,117,0.22);
}
.sc-footer-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(218,185,117,0.48);
  background: linear-gradient(135deg, rgba(165,121,72,0.28), rgba(10,10,10,0.72));
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.sc-footer-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.14) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.sc-footer-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold-mid);
  background: linear-gradient(135deg, rgba(165,121,72,0.5), rgba(12,12,12,0.84));
}
.sc-footer-btn:hover::before { transform: translateX(120%); }
.sc-footer-btn span,
.sc-footer-btn svg {
  position: relative;
  z-index: 1;
}
.sc-footer-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.sc-footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr 0.8fr;
  gap: 28px;
  padding: 46px 0 40px;
}
.sc-footer-panel {
  position: relative;
  min-width: 0;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.sc-footer-panel::before {
  content: '';
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(218,185,117,0.8), transparent);
}
.sc-footer-panel a,
.sc-footer-note {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  color: rgba(233,234,245,0.78);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.sc-footer-panel a:hover {
  color: var(--color-gold-mid);
  transform: translateX(4px);
}
.sc-footer-contact {
  gap: 12px;
}
.sc-footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--color-gold-mid);
  stroke-width: 1.5;
}
.sc-footer-note {
  color: rgba(194,194,194,0.52);
  width: auto;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.sc-footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.sc-footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border: 1px solid rgba(218,185,117,0.36);
  border-radius: 50%;
  background: rgba(0,0,0,0.24);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.sc-footer-social-icons a:hover {
  background: rgba(165,121,72,0.18);
  border-color: var(--color-gold-mid);
  transform: translateY(-2px);
}
.sc-footer-social-icons svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--color-gold-mid);
  stroke-width: 1.5;
}
.sc-footer-privacy {
  color: rgba(194,194,194,0.62) !important;
  font-size: 12px !important;
}
.sc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(194,194,194,0.52);
}
.sc-footer-bottom a {
  color: rgba(218,185,117,0.72);
  transition: color 0.3s;
}
.sc-footer-bottom a:hover {
  color: var(--color-gold-mid);
}

/* ==========================================
   SUBPAGE HERO
   ========================================== */
.sc-subpage-hero {
  position: relative;
  min-height: clamp(520px, 68vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050505;
  padding: 170px 60px 72px;
}
.sc-subpage-hero-media,
.sc-subpage-hero-media img,
.sc-subpage-hero > picture:not(.sc-subpage-hero-media),
.sc-subpage-hero > picture:not(.sc-subpage-hero-media) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-subpage-hero-media img,
.sc-subpage-hero > picture:not(.sc-subpage-hero-media) img {
  transform: scale(1.02);
}
.sc-subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.58) 42%, rgba(0,0,0,0.3) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.sc-subpage-hero::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(218,185,117,0.82), rgba(165,121,72,0.16), transparent);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  z-index: 2;
  animation: sc-laser-beam 1.15s cubic-bezier(.12,.58,.28,.98) 0.55s forwards;
}

@keyframes sc-laser-beam {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
.sc-subpage-hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-width: var(--container-width);
  margin: 0 auto;
}
.sc-subpage-hero .sc-heading-lg {
  font-size: clamp(42px, 6vw, 82px);
  max-width: 980px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sc-subpage-lead {
  max-width: 760px;
  color: rgba(233,234,245,0.82);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.85;
}
.sc-crumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(218,185,117,0.74);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sc-crumb::before {
  content: '';
  width: 36px;
  height: 1px;
  margin: 0 12px 0 0;
  align-self: center;
  background: currentColor;
}

/* ==========================================
   STRONA KONTAKT
   ========================================== */
#sc-contact-page {
  background: var(--color-bg);
}
.sc-contact-section {
  padding: 96px 60px 110px;
}
.sc-contact-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 64px;
  align-items: start;
}
.sc-contact-form-wrap {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid rgba(218,185,117,0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.07);
}
.sc-contact-form-wrap::before {
  content: '';
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 3px;
  background: linear-gradient(180deg, transparent, #DAB975, #72512C, transparent);
}
.sc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sc-estimate-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(233,234,245,0.78);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
}
.sc-estimate-form input[type="text"],
.sc-estimate-form input[type="email"],
.sc-estimate-form input[type="tel"],
.sc-estimate-form select,
.sc-estimate-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  background: rgba(7,7,7,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: var(--size-body);
  padding: 15px 16px;
  border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  margin-bottom: 16px;
}
.sc-estimate-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #A57948 50%), linear-gradient(135deg, #A57948 50%, transparent 50%);
  background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.sc-estimate-form input::placeholder,
.sc-estimate-form textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(194,194,194,0.36); }
.sc-estimate-form input:focus,
.sc-estimate-form select:focus,
.sc-estimate-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: rgba(218,185,117,0.72);
  box-shadow: 0 0 0 3px rgba(165,121,72,0.12);
  background: rgba(12,12,12,0.96);
}
.sc-estimate-form textarea,
.wpcf7-form textarea { min-height: 150px; resize: vertical; }
.wpcf7-form .sc-btn { margin-top: 8px; }
.wpcf7-form .wpcf7-acceptance { color: var(--color-text-muted); font-size: 13px; }
.wpcf7-form .wpcf7-acceptance a { color: var(--color-gold-light); }
.sc-form-message { margin-top: 18px; }
.sc-upload-box {
  position: relative;
  margin-top: 22px;
  border: 1px dashed rgba(218,185,117,0.38);
  background: rgba(165,121,72,0.055);
  border-radius: 8px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.sc-upload-box.is-dragover {
  border-color: var(--color-gold-mid);
  background: rgba(165,121,72,0.12);
  transform: translateY(-2px);
}
.sc-upload-box input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.sc-upload-label {
  min-height: 178px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  cursor: pointer;
}
.sc-upload-label strong {
  color: #fff;
  font-size: 17px;
}
.sc-upload-label small {
  max-width: 440px;
  color: rgba(194,194,194,0.62);
  font-size: 13px;
  line-height: 1.6;
}
.sc-upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(218,185,117,0.38);
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: var(--color-gold-mid);
}
.sc-upload-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.sc-upload-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}
.sc-upload-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.sc-upload-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  background: #111;
}
.sc-upload-name {
  overflow: hidden;
  color: rgba(233,234,245,0.9);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sc-upload-size {
  color: rgba(194,194,194,0.48);
  font-size: 12px;
}
.sc-upload-remove {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(218,185,117,0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--color-gold-mid);
  cursor: pointer;
}
.sc-consent {
  flex-direction: row !important;
  align-items: flex-start;
  margin-top: 22px;
  color: rgba(194,194,194,0.72) !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  line-height: 1.6;
}
.sc-consent input {
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--color-gold-light);
}
.sc-consent a { color: var(--color-gold-mid); }
.sc-submit-btn { margin-top: 28px; }
.sc-form-alert {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(218,185,117,0.28);
  background: rgba(165,121,72,0.08);
  color: rgba(233,234,245,0.86);
  border-radius: 6px;
}
.sc-form-alert--success {
  border-color: rgba(118,186,133,0.42);
  background: rgba(63,130,78,0.14);
}
.sc-aside-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-mid);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sc-contact-info h3 {
  font-size: var(--size-heading-small);
  font-weight: var(--fw-bold);
  color: var(--color-gold-light);
  margin-bottom: 24px;
}
.sc-contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: var(--size-body);
  color: var(--color-text-muted);
}
.sc-contact-info {
  position: sticky;
  top: 120px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.016)),
    image-set(
      url('../images/baner_tlo_kamien.avif') type('image/avif'),
      url('../images/baner_tlo_kamien.webp') type('image/webp'),
      url('../images/baner_tlo_kamien.png') type('image/png')
    ) center/cover;
  box-shadow: inset 0 0 0 999px rgba(0,0,0,0.66);
}
.sc-contact-info-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--color-gold-mid);
  stroke-width: 1.5;
}
.sc-contact-info-item a:hover { color: var(--color-gold-light); }
.sc-contact-note {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(218,185,117,0.18);
  color: rgba(194,194,194,0.76);
}
.sc-contact-note strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
.sc-contact-note p {
  margin: 0;
  line-height: 1.75;
}

/* ==========================================
   STRONA STATYCZNA (O firmie, Polityka)
   ========================================== */
.sc-page-hero {
  padding: 180px 60px 80px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.sc-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 60px 100px;
  color: var(--color-text-muted);
  line-height: 1.9;
}
.sc-page-content h2 {
  font-size: var(--size-heading-small);
  color: var(--color-gold-light);
  margin: 32px 0 12px;
}
.sc-page-content h3 { color: var(--color-text); margin: 24px 0 8px; }
.sc-page-content p { margin-bottom: 16px; }
.sc-page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.sc-page-content a { color: var(--color-gold-light); }

/* ==========================================
   ARCHIVE: REALIZACJE
   ========================================== */
.sc-archive-header { padding: 160px 60px 60px; max-width: var(--container-width); margin: 0 auto; }
.sc-archive-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px 60px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sc-realization-item {
  background: #080808;
  border: 1px solid #181818;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.sc-realization-item:hover {
  border-color: rgba(165,121,72,0.4);
}
.sc-realization-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.sc-realization-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.sc-realization-img-wrap picture,
.sc-realization-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.sc-realization-item:hover .sc-realization-img-wrap img {
  transform: scale(1.05);
}
.sc-realization-meta {
  padding: 18px 22px 20px;
  border-top: 1px solid #181818;
}
.sc-realization-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.sc-realization-info {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================
   ARCHIVE: OFERTA
   ========================================== */
.sc-oferta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 90px 60px 110px;
}
.sc-oferta-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.sc-oferta-card:hover { border-color: var(--color-gold-light); }
.sc-oferta-card picture img { width: 100%; height: 260px; object-fit: cover; }
.sc-oferta-card-body { padding: 24px; }
.sc-oferta-card-title {
  font-size: var(--size-heading-small);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.sc-oferta-card-desc { color: var(--color-text-muted); font-size: 15px; line-height: 1.7; }

/* ==========================================
   OFERTA DETAIL
   ========================================== */
.sc-offer-detail {
  padding: 96px 60px 120px;
}
.sc-offer-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 68px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.sc-offer-story {
  color: rgba(233,234,245,0.82);
  font-size: 17px;
  line-height: 1.9;
}
.sc-offer-story > p:first-child {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.55;
}
.sc-offer-story h2 {
  margin: 46px 0 16px;
  color: var(--color-gold-mid);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
}
.sc-offer-story h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-size: 20px;
}
.sc-offer-story p { margin-bottom: 18px; }
.sc-offer-story ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.sc-offer-story li {
  position: relative;
  padding-left: 26px;
  color: rgba(233,234,245,0.8);
}
.sc-offer-story li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--color-gold-mid);
}
.sc-offer-aside {
  position: sticky;
  top: 120px;
  padding: 34px;
  border: 1px solid rgba(218,185,117,0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(165,121,72,0.12), rgba(255,255,255,0.024)),
    #090909;
}
.sc-offer-aside h2 {
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.sc-offer-aside p {
  color: rgba(194,194,194,0.78);
  line-height: 1.75;
}

/* ==========================================
   MEGA MENU — oferta
   ========================================== */
.sc-mega-wrap {
  position: static;
}
.sc-mega-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--size-menu);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  transition: color 0.3s, text-shadow 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}
.sc-mega-trigger:hover,
.sc-mega-wrap.is-open .sc-mega-trigger {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(165,121,72,0.7), 0 0 28px rgba(218,185,117,0.35);
}
.sc-mega-chevron {
  width: 13px;
  height: 13px;
  stroke-width: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.sc-mega-wrap.is-open .sc-mega-chevron {
  transform: rotate(180deg);
}

/* Panel */
.sc-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(3,3,3,0.97);
  border-top: 1px solid rgba(165,121,72,0.22);
  border-bottom: 1px solid rgba(165,121,72,0.1);
  padding: 32px 60px 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.sc-mega-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Grid 5 kolumn */
.sc-mega-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Kafelki */
.sc-mega-item {
  display: block;
  text-decoration: none;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.sc-mega-item:hover {
  border-color: rgba(165,121,72,0.35);
}
.sc-mega-img-wrap {
  height: 148px;
  overflow: hidden;
  position: relative;
}
.sc-mega-img-wrap picture,
.sc-mega-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}
.sc-mega-item:hover .sc-mega-img-wrap img {
  transform: scale(1.09);
}
.sc-mega-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
  transition: opacity 0.3s;
}
.sc-mega-item:hover .sc-mega-img-overlay {
  opacity: 0.6;
}

/* Podpis */
.sc-mega-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px 11px;
  background: #0a0a0a;
  border-top: 1px solid #1c1c1c;
  gap: 6px;
}
.sc-mega-caption-text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(200,200,200,0.72);
  transition: color 0.3s;
  line-height: 1.3;
}
.sc-mega-item:hover .sc-mega-caption-text {
  color: var(--color-gold-light);
}
.sc-mega-caption-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(165,121,72,0);
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
}
.sc-mega-caption-arrow svg {
  width: 16px;
  height: 16px;
}
.sc-mega-item:hover .sc-mega-caption-arrow {
  color: var(--color-gold-light);
  transform: translateX(3px);
}

/* Stopka panelu */
.sc-mega-foot {
  max-width: var(--container-width);
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(165,121,72,0.1);
  display: flex;
  justify-content: flex-end;
}
.sc-mega-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(180,180,180,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.sc-mega-all svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}
.sc-mega-all:hover {
  color: var(--color-gold-light);
}
.sc-mega-all:hover svg {
  transform: translateX(4px);
}
