@charset "UTF-8";
:root {
  --bg: #f7f2ea;
  --bg-soft: #fffaf2;
  --header: rgba(255, 252, 247, 0.92);
  --header-bg-color: #20160f;
  --header-line-color: rgba(116, 80, 45, 0.18);
  --text: #201813;
  --muted: #76685f;
  --primary: #5f3826;
  --primary-dark: #2a1911;
  --accent: #c07a2c;
  --accent-dark: #9b5d1d;
  --accent-soft: rgba(192, 122, 44, 0.15);
  --cream: #fff8ee;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --danger: #b33636;
  --success: #1f7a4c;
  --shadow: 0 24px 70px rgba(54, 32, 16, 0.13);
  --shadow-strong: 0 34px 100px rgba(54, 32, 16, 0.2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --transition: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --side-width: min(1180px, calc(100% - 48px));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: clip;
  background: radial-gradient(circle at top left, rgba(192, 122, 44, 0.18), transparent 34vw), linear-gradient(180deg, #fffaf3 0%, #f7f2ea 45%, #fffaf3 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(32, 24, 19, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 24, 19, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.home-main {
  padding-top: 108px;
}

.home-section {
  width: var(--side-width);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-title {
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.home-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(192, 122, 44, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.78);
  color: var(--accent-dark);
  box-shadow: 0 12px 34px rgba(192, 122, 44, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title h2, .hero-home-content h1, .hero-home-content h2, .split-card-text h2, .offer-link-text h2, .contact-home-text h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-title h2 {
  max-width: 900px;
  margin-inline: auto;
}

.home-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.85;
}

.home-lead.centered {
  max-width: 980px;
  margin-inline: auto;
}

.btn-primary-soft, .btn-secondary-soft, .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary-soft {
  position: relative;
  overflow: hidden;
  border: 0;
  background: linear-gradient(135deg, var(--accent), #e0ad67);
  color: #21140d;
  box-shadow: 0 16px 40px rgba(192, 122, 44, 0.28);
}

.btn-primary-soft::after, .header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn-primary-soft:hover, .btn-secondary-soft:hover {
  transform: translateY(-3px);
}

.btn-primary-soft:hover {
  background: linear-gradient(135deg, #d8943f, #edbd7a);
}

.btn-primary-soft:hover::after, .header-cta:hover::after {
  transform: translateX(130%);
}

.btn-secondary-soft {
  border: 1px solid rgba(48, 35, 27, 0.15);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.btn-secondary-soft:hover {
  background: var(--cream);
  border-color: rgba(192, 122, 44, 0.45);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 700;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  width: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-up {
  background: linear-gradient(90deg, #21140d, #4e2c19);
}

.header-down {
  background: var(--header);
  border-bottom: 1px solid rgba(116, 80, 45, 0.13);
  box-shadow: 0 20px 50px rgba(35, 23, 15, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner, .header-navigation {
  width: var(--side-width);
  margin-inline: auto;
}

.header-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 248, 238, 0.86);
  font-size: 0.91rem;
}

.header-up p, .header-up strong, .header-up a {
  color: rgba(255, 248, 238, 0.86);
}

.header-contact-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-navigation {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(40, 22, 13, 0.12));
}

.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name h1, .brand-name .brand-name-title {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.brand-name p {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover, .main-nav a.active {
  background: rgba(192, 122, 44, 0.12);
  color: var(--primary-dark);
}

.header-cta {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #201813;
  color: #fff8ee;
  font-size: 0.93rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

@media (max-width: 1150px) {
  .main-nav {
    gap: 2px;
  }
  .main-nav a {
    padding-inline: 9px;
    font-size: 0.9rem;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 1050px) {
  .header-navigation {
    min-height: 76px;
    padding: 14px 0;
    gap: 16px;
  }
  .logo {
    max-width: calc(100% - 130px);
    gap: 14px;
  }
  .logo img {
    width: 56px;
    height: 56px;
  }
  .brand-name h1, .brand-name .brand-name-title {
    font-size: 1.15rem;
  }
  .brand-name p {
    font-size: 0.9rem;
  }
  .menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 46px;
    margin-left: auto;
    padding: 0 18px;
    border: 1px solid rgba(192, 122, 44, 0.28);
    border-radius: 999px;
    background: rgba(192, 122, 44, 0.12);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(100%, 420px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(116, 80, 45, 0.12);
    border-radius: 24px;
    background: var(--bg-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 16px;
  }
}
@media (max-width: 768px) {
  .header-up {
    display: none;
  }
  .brand-name p {
    display: none;
  }
  .logo img {
    width: 52px;
    height: 52px;
  }
}
.site-footer {
  border-top: 1px solid var(--header-line-color);
  background: var(--header);
}

.footer-up {
  padding: 10px;
}

.footer-inner {
  width: var(--side-width);
  margin-inline: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-brand-name h2 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.7rem;
}

.footer-brand-name p, .footer-description, .footer-contact-list li, .footer-menu-list li, .footer-contact-list a, .footer-menu-list a {
  color: var(--muted);
  font-size: 1rem;
}

.footer-description {
  max-width: 420px;
  line-height: 1.7;
}

.footer-contact-list, .footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list a:hover, .footer-menu-list a:hover {
  color: var(--text);
}

.footer-down {
  padding: 18px 0;
  border-top: 1px solid var(--header-line-color);
  background: var(--header-bg-color);
}

.footer-down-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-down p {
  color: rgba(255, 248, 238, 0.86);
  font-size: 0.95rem;
}

.footer-down a {
  color: #fff8ee;
}

@media (max-width: 1050px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
  .footer-menu-column {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .footer-brand::after {
    content: "";
    padding-bottom: 10px;
    border-bottom: 1px solid var(--header-line-color);
  }
  .footer-logo img {
    width: 62px;
    height: 62px;
  }
  .footer-brand-name h2 {
    font-size: 1.4rem;
  }
  .footer-brand-name p, .footer-description, .footer-contact-list li, .footer-menu-list li, .footer-contact-list a, .footer-menu-list a {
    font-size: 0.95rem;
  }
  .footer-column h3 {
    margin-bottom: 14px;
    font-size: 1.1rem;
  }
}
.hero-home {
  position: relative;
  padding: clamp(72px, 9vw, 118px) 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--header-line-color);
  border-radius: 0 0 72px 72px;
  background: linear-gradient(rgba(255, 250, 243, 0.86), rgba(255, 250, 243, 0.86)), url("../images/hero-gasparo.webp") center/cover no-repeat;
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.16));
}

.hero-home-inner, .hero-home-cards {
  position: relative;
  z-index: 1;
  width: var(--side-width);
  margin-inline: auto;
}

.hero-home-content {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.hero-home-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-home-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-info-card {
  padding: 22px;
  border: 1px solid rgba(116, 80, 45, 0.12);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.hero-info-card h3 {
  margin: 12px 0 10px;
  color: var(--text);
  font-size: 1.15rem;
}

.hero-info-card p, .hero-info-card a {
  color: var(--muted);
  line-height: 1.8;
}

.modern-hero {
  isolation: isolate;
  padding: clamp(54px, 8vw, 104px) 0 32px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(253, 240, 218, 0.82)), url("../images/hero-gasparo.webp") center/cover no-repeat;
}

.modern-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 18% 12%, rgba(192, 122, 44, 0.25), transparent 34%), radial-gradient(circle at 82% 16%, rgba(95, 56, 38, 0.18), transparent 32%);
}

.modern-hero .hero-home-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.68));
}

.hero-decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-decor-one {
  width: 240px;
  height: 240px;
  top: 14%;
  left: -60px;
  background: rgba(192, 122, 44, 0.26);
}

.hero-decor-two {
  width: 340px;
  height: 340px;
  right: -90px;
  bottom: 18%;
  background: rgba(95, 56, 38, 0.16);
}

.modern-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.modern-hero .hero-home-content {
  max-width: 740px;
  text-align: left;
}

.modern-hero .hero-home-actions {
  justify-content: flex-start;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(116, 80, 45, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 28px rgba(55, 31, 17, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
  backdrop-filter: blur(12px);
}

.hero-proof-row strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual-main {
  position: absolute;
  inset: 0 0 48px 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 44px;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
}

.hero-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(32, 24, 19, 0.36));
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03) brightness(1.02);
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(310px, 82%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 22px 58px rgba(37, 22, 13, 0.18);
  backdrop-filter: blur(18px);
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
}

.hero-floating-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-floating-card-top {
  top: 34px;
  left: 0;
}

.hero-floating-card-bottom {
  right: 0;
  bottom: 30px;
}

.floating-icon, .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(116, 80, 45, 0.12);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -58px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(192, 122, 44, 0.12);
}

.advantage-number {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(192, 122, 44, 0.34);
  font-size: 3.3rem;
  letter-spacing: -0.06em;
}

.advantage-card h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.32rem;
}

.advantage-card p {
  color: var(--muted);
  line-height: 1.85;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.split-card {
  overflow: hidden;
  border: 1px solid rgba(116, 80, 45, 0.12);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  backdrop-filter: blur(16px);
}

.split-card-text {
  padding: clamp(30px, 5vw, 52px);
}

.soft-list {
  margin-top: 22px;
  padding-left: 20px;
  list-style: circle;
}

.soft-list li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.8;
}

.split-card-image {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  background: linear-gradient(rgba(251, 250, 247, 0.32), rgba(251, 250, 247, 0.5)), url("../images/section-gasparo.webp") center/cover no-repeat;
}

.split-card-equipment-image {
  background: linear-gradient(to bottom, rgba(251, 250, 247, 0.08) 35%, rgba(251, 250, 247, 0.88) 100%), url("../images/zabawa.jpg") center/cover no-repeat;
}

.image-card-content {
  width: 100%;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8));
}

.image-card-content h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.6rem;
}

.image-card-content p {
  color: var(--muted);
  line-height: 1.8;
}

.offer-links-section {
  display: grid;
  gap: 22px;
}

.offer-link-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(116, 80, 45, 0.12);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  backdrop-filter: blur(16px);
}

.offer-link-card.contact-cta-card {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.68)), url("../images/contact-gasparo.jpg") center/cover no-repeat;
}

.offer-link-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-home-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 32px;
  border: 1px solid var(--header-line-color);
  border-radius: var(--radius-xl);
  background: linear-gradient(rgba(251, 250, 247, 0.86), rgba(251, 250, 247, 0.86)), url("../images/contact-gasparo.jpg") center/cover no-repeat;
}

.contact-offer {
  grid-template-columns: 1fr 0.2fr;
}

.btn-center {
  display: flex;
  align-items: center;
  text-align: center;
}

.contact-home-details {
  padding: 24px 26px;
  border: 1px solid var(--header-line-color);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
}

.contact-home-details p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-home-details p:last-child {
  margin-bottom: 0;
}

.contact-home-text .offer-link-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 2vh;
  margin-right: 5vw;
}

.reviews-home-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: stretch;
}

.reviews-home-summary {
  padding: 28px 22px;
  border: 1px solid rgba(116, 80, 45, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, #2b1910, #5b3320);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  color: #fff8ee;
  text-align: center;
}

.reviews-home-summary strong {
  display: block;
  margin-bottom: 12px;
  color: #fff8ee;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.reviews-home-summary span {
  display: block;
  margin-bottom: 12px;
  color: #f0b45f;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
}

.reviews-home-summary p, .reviews-home-summary .text-link {
  color: rgba(255, 248, 238, 0.78);
}

.reviews-home-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-soft-card {
  padding: 26px;
  border: 1px solid rgba(116, 80, 45, 0.12);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.review-soft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.review-soft-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.2rem;
}

.review-soft-card span {
  display: block;
  margin-bottom: 12px;
  color: #f0a83a;
  letter-spacing: 0.08em;
}

.review-soft-card p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1050px) {
  :root {
    --side-width:min(94%,760px);
  }
  .home-main {
    padding-top: 112px;
  }
  .modern-hero-grid, .split-section, .contact-home-box, .reviews-home-layout, .offer-link-card {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-visual-main {
    inset: 0 30px 40px;
  }
  .hero-home-cards, .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviews-home-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-link-action {
    justify-self: start;
  }
  .hero-home-cards > :last-child:nth-child(odd), .advantages-grid > :last-child:nth-child(odd), .reviews-home-cards > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }
}
@media (max-width: 768px) {
  :root {
    --side-width:calc(100% - 32px);
  }
  .home-main {
    padding-top: 106px;
  }
  .home-section {
    padding: 50px 0;
  }
  .hero-home {
    padding: 80px 0 56px;
    border-radius: 0 0 46px 46px;
  }
  .modern-hero {
    padding-top: 46px;
  }
  .hero-home-content, .modern-hero .hero-home-content {
    text-align: left;
  }
  .hero-home-content h1, .hero-home-content h2, .section-title h2, .split-card-text h2, .contact-home-text h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    letter-spacing: -0.035em;
  }
  .hero-home-actions .btn-primary-soft, .hero-home-actions .btn-secondary-soft {
    width: 100%;
  }
  .hero-visual {
    min-height: 350px;
  }
  .hero-visual-main {
    inset: 0 8px 44px;
    border-radius: 30px;
    transform: none;
  }
  .hero-floating-card {
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
  }
  .hero-floating-card-top {
    top: auto;
    bottom: 104px;
  }
  .hero-floating-card-bottom {
    bottom: 14px;
  }
  .hero-home-cards, .advantages-grid, .reviews-home-cards {
    grid-template-columns: 1fr;
  }
  .hero-home-cards > :last-child:nth-child(odd), .advantages-grid > :last-child:nth-child(odd), .reviews-home-cards > :last-child:nth-child(odd) {
    width: 100%;
  }
  .split-card, .process-card {
    border-radius: 28px;
  }
  .split-card-text, .offer-link-card, .contact-home-box {
    padding: 22px;
  }
  .contact-home-text .offer-link-action {
    justify-content: flex-start;
    margin-right: 0;
  }
  .hero-proof-row span {
    font-size: 0.86rem;
  }
  .radio-group {
    flex-wrap: wrap;
  }
}
/* =========================
         FORMULARZ ZAPYTANIA
========================= */
.contact-form {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(116, 80, 45, 0.18);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 34px rgba(54, 32, 16, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label,
.form-label {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 650;
}

.field-optional {
  color: var(--muted);
  font-weight: 400;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 80, 45, 0.2);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 252, 247, 0.9);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  padding-right: 46px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-dark) 50%), linear-gradient(135deg, var(--accent-dark) 50%, transparent 50%);
  background-position: calc(100% - 21px) 21px, calc(100% - 15px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a8c82;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(192, 122, 44, 0.8);
  box-shadow: 0 0 0 4px rgba(192, 122, 44, 0.14);
  background: #fff;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-method-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(116, 80, 45, 0.18);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.72);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.contact-method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 122, 44, 0.52);
  box-shadow: 0 10px 20px rgba(54, 32, 16, 0.08);
}

.contact-method-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-method-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--accent-dark);
  background: rgba(192, 122, 44, 0.12);
  transition: color var(--transition), background var(--transition);
}

.contact-method-card strong,
.contact-method-card small {
  display: block;
}

.contact-method-card strong {
  color: var(--text);
  font-size: 0.94rem;
}

.contact-method-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-method-card:has(input:checked) {
  border-color: rgba(192, 122, 44, 0.82);
  background: linear-gradient(135deg, rgba(255, 248, 238, 0.98), rgba(248, 231, 204, 0.72));
  box-shadow: 0 10px 24px rgba(192, 122, 44, 0.14);
}

.contact-method-card:has(input:checked) .contact-method-card__icon {
  color: #fff;
  background: var(--accent);
}

.contact-method-card:has(input:focus-visible) {
  outline: 3px solid rgba(192, 122, 44, 0.3);
  outline-offset: 3px;
}

.is-hidden {
  display: none !important;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.turnstile-wrap {
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--header-line-color);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.turnstile-wrap.is-error {
  border-color: var(--danger);
}

.turnstile-loading {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.turnstile-wrap .cf-turnstile {
  min-height: 65px;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--accent-dark);
  font-weight: 650;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-info {
  color: var(--muted);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 2px;
}

@media (max-width: 680px) {
  .form-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }
  .contact-method-card {
    min-height: 72px;
  }
  .contact-form button {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   RĘCZNE OPINIE - KARUZELA
========================= */
.reviews-slider {
  min-width: 0;
}

.reviews-slider .reviews-home-cards {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}

.reviews-slider .review-soft-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.reviews-slider .reviews-home-cards > :last-child:nth-child(odd) {
  grid-column: auto;
  justify-self: auto;
  width: auto;
}

.reviews-home-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.review-nav-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--header-line-color);
  border-radius: 50%;
  background-color: var(--header);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-nav-button:hover,
.review-nav-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  outline: none;
}

@media (max-width: 1050px) {
  .reviews-slider .review-soft-card {
    flex-basis: calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }
}
@media (max-width: 768px) {
  .reviews-slider .review-soft-card {
    flex-basis: 100%;
    min-width: 100%;
  }
}
/* =========================
         AGE GATE
========================= */
body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(184, 141, 71, 0.3), transparent 38%), rgba(18, 28, 25, 0.84);
  backdrop-filter: blur(7px);
}

.age-gate__panel {
  position: relative;
  width: min(100%, 610px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: linear-gradient(145deg, #fffdf9 0%, #f6efe4 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.age-gate__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(184, 141, 71, 0.15);
  color: #7a5520;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.age-gate__panel h2 {
  margin: 18px auto 14px;
  max-width: 470px;
  color: #1d2c27;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.1;
}

.age-gate__panel > p:not(.age-gate__note) {
  max-width: 510px;
  margin: 0 auto;
  color: #4d5b55;
  font-size: 1.02rem;
  line-height: 1.7;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.age-gate__confirm,
.age-gate__decline {
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.age-gate__confirm {
  border: 1px solid #2f5a47;
  background: #2f5a47;
  color: #fff;
  box-shadow: 0 11px 22px rgba(47, 90, 71, 0.2);
}

.age-gate__decline {
  border: 1px solid #d7cbbc;
  background: transparent;
  color: #3d4a45;
}

.age-gate__confirm:hover,
.age-gate__decline:hover {
  transform: translateY(-2px);
}

.age-gate__confirm:hover {
  background: #214535;
  box-shadow: 0 15px 28px rgba(47, 90, 71, 0.28);
}

.age-gate__decline:hover {
  background: rgba(184, 141, 71, 0.1);
}

.age-gate__confirm:focus-visible,
.age-gate__decline:focus-visible,
.age-gate__note a:focus-visible {
  outline: 3px solid #b88d47;
  outline-offset: 3px;
}

.age-gate__note {
  margin: 20px auto 0;
  max-width: 500px;
  color: #66736d;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
}

.age-gate__note a {
  color: #214535;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .age-gate {
    padding: 14px;
  }
  .age-gate__panel {
    padding: 28px 20px;
    border-radius: 22px;
  }
  .age-gate__actions {
    grid-template-columns: 1fr;
  }
}
.offer-page .hero-home {
  background: linear-gradient(rgba(251, 250, 247, 0.84), rgba(251, 250, 247, 0.84)), url("../images/section-gasparo.webp") center/cover no-repeat;
}

.offer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  justify-content: center;
}

.offer-gallery-grid .gallery-item {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(54, 32, 16, 0.09);
  cursor: pointer;
}

.offer-gallery-grid .gallery-item img {
  display: block;
  width: 100%;
  height: 290px;
  border: 0;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-gallery-grid .gallery-item:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offer-gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 1050px) {
  .offer-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-gallery-grid > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }
}
@media (max-width: 768px) {
  .offer-gallery-grid {
    grid-template-columns: 1fr;
  }
  .offer-gallery-grid > :last-child:nth-child(odd) {
    width: 100%;
  }
}
.is-locked {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 51, 0.82);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: -72px;
}

.lightbox-next {
  right: -72px;
}

@media (max-width: 900px) {
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
  .lightbox-content {
    width: 100%;
  }
  .lightbox-content img {
    max-height: 78vh;
  }
}
/* =========================
        OFERTA WESELNA 
========================= */
.wedding-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.wedding-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.wedding-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.wedding-slide {
  border: 0;
  background: transparent;
  padding: 0 8px;
  cursor: pointer;
  flex: 0 0 auto;
}

.wedding-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--header-line-color);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wedding-slide:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.wedding-slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--header-line-color);
  border-radius: 50%;
  background: var(--header);
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.wedding-slider-arrow:hover {
  background-color: var(--accent-soft);
  border-color: var(--accent);
  transform: scale(1.05);
}

.wedding-slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wedding-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #cfd8dd;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.wedding-slider-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 1050px) {
  .wedding-slider-shell {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .wedding-slider-shell {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }
  .wedding-slide {
    padding: 0 6px;
  }
  .wedding-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }
}
.wedding-visual-card {
  overflow: hidden;
}

.wedding-visual-image {
  width: 100%;
  cursor: pointer;
  transform: scale(1.01);
}

.wedding-visual-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--transition);
}

.wedding-visual-image:hover img {
  transform: scale(1.01);
}

/* =========================
        KONTAKT
========================= */
.contact-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact-split-section .split-card {
  display: flex;
  flex-direction: column;
}

.contact-map-wrapper {
  flex: 1;
  display: flex;
}

.contact-map-wrapper iframe {
  margin: auto;
  width: 95%;
  height: 95%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--header-line-color);
}

@media (max-width: 1050px) {
  .contact-split-section {
    grid-template-columns: 1fr;
  }
  .contact-map-wrapper {
    padding: 0 22px 22px;
  }
}
/* =========================
      PRIVACY POLICY PAGE
========================= */
.privacy-page {
  padding: 78px 0 90px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f7f3ec 100%);
}

.privacy-shell {
  width: min(940px, var(--side-width));
  margin: 0 auto;
}

.privacy-hero {
  margin-bottom: 26px;
}

.privacy-kicker {
  margin-bottom: 12px;
  color: #9a702e;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 760px;
  color: #1d2c27;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.privacy-updated {
  margin-top: 14px;
  color: #63716a;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.privacy-card {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #ece2d6;
  border-radius: 24px;
  background: #fffdfa;
  box-shadow: 0 18px 45px rgba(39, 51, 45, 0.07);
}

.privacy-card section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee4d8;
}

.privacy-card h2 {
  margin-bottom: 12px;
  color: #1e2e28;
  font-size: clamp(1.32rem, 2.4vw, 1.8rem);
  line-height: 1.22;
}

.privacy-card p,
.privacy-card li {
  color: #4f5d56;
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-card p + p {
  margin-top: 12px;
}

.privacy-card ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.privacy-card li + li {
  margin-top: 7px;
}

.privacy-card a {
  color: #24523f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-highlight {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid #b88d47;
  border-radius: 0 12px 12px 0;
  background: #fbf5e8;
}

.privacy-highlight strong {
  color: #30463b;
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 48px 0 58px;
  }
  .privacy-shell {
    width: calc(100% - 28px);
  }
}
/* =========================
   MODERN REFRESH 2026
   Kierunek: lokalna, zaufana firma + nowoczesna wizytówka sprzedażowa
========================= */
:root {
  --bg: #f7f2ea;
  --bg-soft: #fffaf2;
  --header: rgba(255, 252, 247, 0.92);
  --header-bg-color: #20160f;
  --header-line-color: rgba(116, 80, 45, 0.18);
  --text: #201813;
  --muted: #76685f;
  --primary: #5f3826;
  --primary-dark: #2a1911;
  --accent: #c07a2c;
  --accent-dark: #9b5d1d;
  --accent-soft: rgba(192, 122, 44, 0.15);
  --cream: #fff8ee;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --shadow: 0 24px 70px rgba(54, 32, 16, 0.13);
  --shadow-strong: 0 34px 100px rgba(54, 32, 16, 0.2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --transition: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --side-width: min(1180px, calc(100vw - 48px));
}

html,
body {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(192, 122, 44, 0.18), transparent 34vw), linear-gradient(180deg, #fffaf3 0%, #f7f2ea 45%, #fffaf3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(32, 24, 19, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 24, 19, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
  z-index: -1;
}

.home-main {
  padding-top: 108px;
}

.home-section {
  width: var(--side-width);
  min-width: 0;
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-title {
  margin-bottom: 44px;
}

.home-kicker {
  border: 1px solid rgba(192, 122, 44, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 248, 238, 0.78);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 34px rgba(192, 122, 44, 0.1);
}

.section-title h2,
.hero-home-content h2,
.split-card-text h2,
.offer-link-text h2,
.contact-home-text h2 {
  color: var(--text);
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-title h2 {
  max-width: 900px;
  margin-inline: auto;
}

.home-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.85;
}

.btn-primary-soft,
.btn-secondary-soft,
.header-cta {
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.btn-primary-soft {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), #e0ad67);
  border-color: transparent;
  color: #21140d;
  box-shadow: 0 16px 40px rgba(192, 122, 44, 0.28);
}

.btn-primary-soft::after,
.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn-primary-soft:hover::after,
.header-cta:hover::after {
  transform: translateX(130%);
}

.btn-primary-soft:hover {
  background: linear-gradient(135deg, #d8943f, #edbd7a);
  transform: translateY(-3px);
}

.btn-secondary-soft {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(48, 35, 27, 0.15);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.btn-secondary-soft:hover {
  background: var(--cream);
  border-color: rgba(192, 122, 44, 0.45);
}

/* Header */
.modern-header {
  background: transparent;
  transition: transform 0.3s ease, background 0.3s ease;
}

.header-up {
  background: linear-gradient(90deg, #21140d, #4e2c19);
  border: 0;
}

.header-inner,
.header-navigation {
  width: var(--side-width);
  min-width: 0;
}

.header-inner {
  min-height: 38px;
  font-size: 0.91rem;
}

.header-up p,
.header-up strong,
.header-up a {
  color: rgba(255, 248, 238, 0.86);
}

.header-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-down {
  background: var(--header);
  border-bottom: 1px solid rgba(116, 80, 45, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(35, 23, 15, 0.07);
}

.header-navigation {
  min-height: 72px;
  gap: 20px;
}

.logo img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 18px rgba(40, 22, 13, 0.12));
}

.brand-name h1 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.brand-name p {
  font-size: 0.82rem;
}

.main-nav {
  width: auto;
  gap: 8px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(192, 122, 44, 0.12);
  color: var(--primary-dark);
  transform: none;
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding-inline: 18px;
  background: #201813;
  color: #fff8ee;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.93rem;
  white-space: nowrap;
}

/* Hero */
.modern-hero {
  isolation: isolate;
  min-width: 0;
  padding: clamp(54px, 8vw, 104px) 0 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(253, 240, 218, 0.82)), url("../images/hero-gasparo.jpg") center/cover no-repeat;
}

.modern-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(192, 122, 44, 0.25), transparent 34%), radial-gradient(circle at 82% 16%, rgba(95, 56, 38, 0.18), transparent 32%);
  z-index: -2;
}

.hero-home-overlay {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.68));
  z-index: -1;
}

.hero-decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-decor-one {
  width: 240px;
  height: 240px;
  background: rgba(192, 122, 44, 0.26);
  top: 14%;
  left: -60px;
}

.hero-decor-two {
  width: 340px;
  height: 340px;
  background: rgba(95, 56, 38, 0.16);
  right: -90px;
  bottom: 18%;
}

.modern-hero-grid {
  position: relative;
  width: var(--side-width);
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-inline: auto;
}

.hero-home-inner {
  min-width: 0;
}

.hero-home-content {
  max-width: 740px;
  padding: 0;
  text-align: left;
}

.hero-home-content h2 {
  margin-bottom: 22px;
}

.hero-home-actions {
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(116, 80, 45, 0.13);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  box-shadow: 0 10px 28px rgba(55, 31, 17, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof-row strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual-main {
  position: absolute;
  inset: 0 0 48px 40px;
  border-radius: 44px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(32, 24, 19, 0.36));
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03) brightness(1.02);
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  width: min(310px, 82%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 22px 58px rgba(37, 22, 13, 0.18);
  backdrop-filter: blur(18px);
}

.hero-floating-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 3px;
}

.hero-floating-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.floating-icon,
.card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex: 0 0 auto;
}

.hero-floating-card-top {
  top: 34px;
  left: 0;
}

.hero-floating-card-bottom {
  right: 0;
  bottom: 30px;
}

.hero-home-cards {
  width: var(--side-width);
  min-width: 0;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-info-card,
.advantage-card,
.review-soft-card,
.offer-link-card,
.split-card,
.process-card article,
.contact-form,
.reviews-home-summary,
.category-card {
  border: 1px solid rgba(116, 80, 45, 0.12);
  box-shadow: 0 18px 52px rgba(54, 32, 16, 0.08);
  backdrop-filter: blur(16px);
}

.hero-info-card {
  border-radius: 24px;
  padding: 22px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero-info-card:hover,
.advantage-card:hover,
.category-card:hover,
.review-soft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.hero-info-card h3 {
  margin: 12px 0 10px;
}

.hero-info-card p,
.hero-info-card a {
  color: var(--muted);
}

/* Cards/sections */
.advantages-grid {
  gap: 18px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -58px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(192, 122, 44, 0.12);
}

.advantage-number {
  color: rgba(192, 122, 44, 0.34);
  font-size: 3.3rem;
  letter-spacing: -0.06em;
}

.advantage-card h3 {
  font-size: 1.32rem;
}

.category-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 32px;
  color: #fff;
}

.category-large {
  grid-row: 1/3;
  min-height: 520px;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: saturate(1.08) contrast(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 24, 19, 0.06), rgba(32, 24, 19, 0.82));
}

.category-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.08);
}

.category-card > div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.category-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.category-card h3 {
  max-width: 620px;
  font-size: clamp(1.45rem, 2.4vw, 2.7rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.category-card p {
  margin-top: 12px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.modern-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.modern-split .split-card-text {
  padding: clamp(30px, 5vw, 52px);
}

.split-card,
.process-card {
  border-radius: 34px;
}

.process-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(145deg, #2a1911, #5a321d);
  box-shadow: var(--shadow-strong);
}

.process-card article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 3px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 238, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff8ee;
}

.process-card article span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e2ae65);
  color: #201813;
  font-weight: 900;
}

.process-card article h3 {
  font-size: 1.12rem;
}

.process-card article p {
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.55;
}

.modern-check-list li {
  position: relative;
  padding-left: 32px;
}

.modern-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.modern-contact-box {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: radial-gradient(circle at top left, rgba(192, 122, 44, 0.22), transparent 34%), linear-gradient(135deg, #fffaf3, #f2e4d0);
  border: 1px solid rgba(116, 80, 45, 0.14);
  box-shadow: var(--shadow-strong);
}

.modern-contact-box::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -180px;
  border-radius: 999px;
  background: rgba(192, 122, 44, 0.16);
}

.contact-home-text,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form {
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.8);
}

.contact-quick-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.contact-quick-links i {
  color: var(--accent-dark);
}

.form-group input,
.form-group textarea {
  border-radius: 18px;
  border-color: rgba(116, 80, 45, 0.16);
  background: rgba(255, 252, 247, 0.86);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(192, 122, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(192, 122, 44, 0.14);
  background: #fff;
}

/* Reviews */
.reviews-home-layout {
  align-items: stretch;
}

.reviews-home-summary {
  border-radius: 30px;
  background: linear-gradient(145deg, #2b1910, #5b3320);
  color: #fff8ee;
}

.reviews-home-summary strong {
  color: #fff8ee;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.reviews-home-summary span {
  color: #f0b45f;
}

.reviews-home-summary p,
.reviews-home-summary .text-link {
  color: rgba(255, 248, 238, 0.78);
}

.review-soft-card {
  border-radius: 26px;
  padding: 26px;
}

.review-soft-card span {
  color: #f0a83a;
  letter-spacing: 0.08em;
}

.review-nav-button {
  background: #fff8ee;
  border-color: rgba(116, 80, 45, 0.16);
  box-shadow: 0 12px 30px rgba(54, 32, 16, 0.1);
}

/* Offer gallery improvement */
.offer-gallery-grid {
  gap: 18px;
}

.offer-gallery-grid .gallery-item {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(54, 32, 16, 0.09);
}

.offer-gallery-grid .gallery-item img {
  border: 0;
  border-radius: 0;
  height: 290px;
  filter: saturate(1.08) contrast(1.04);
}

/* Scroll animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1150px) {
  .main-nav {
    gap: 2px;
  }
  .main-nav a {
    font-size: 0.9rem;
    padding-inline: 9px;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 1050px) {
  :root {
    --side-width: min(94vw, 760px);
  }
  .home-main {
    padding-top: 112px;
  }
  .header-navigation {
    min-height: 76px;
  }
  .menu-toggle {
    border-radius: 999px;
    background: rgba(192, 122, 44, 0.12);
    border-color: rgba(192, 122, 44, 0.28);
    font-weight: 800;
  }
  .main-nav {
    width: min(100%, 420px);
    padding: 12px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(116, 80, 45, 0.12);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 16px;
  }
  .modern-hero-grid,
  .modern-split,
  .contact-home-box {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-visual-main {
    inset: 0 30px 40px 30px;
  }
  .hero-home-cards,
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .category-large {
    grid-row: auto;
    min-height: 360px;
  }
  .category-card {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  :root {
    --side-width: calc(100vw - 32px);
  }
  .home-main {
    padding-top: 106px;
  }
  .header-up {
    display: none;
  }
  .home-section {
    min-width: 0;
    padding: 50px 0;
  }
  .header-inner,
  .header-navigation,
  .footer-inner {
    min-width: 0;
  }
  .brand-name p {
    display: none;
  }
  .logo img {
    width: 52px;
    height: 52px;
  }
  .modern-hero {
    min-width: 0;
    padding-top: 46px;
  }
  .hero-home-content {
    text-align: left;
  }
  .hero-home-content h2,
  .section-title h2,
  .split-card-text h2,
  .contact-home-text h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    letter-spacing: -0.035em;
  }
  .hero-home-actions .btn-primary-soft,
  .hero-home-actions .btn-secondary-soft {
    width: 100%;
  }
  .hero-visual {
    min-height: 350px;
  }
  .hero-visual-main {
    inset: 0 8px 44px 8px;
    border-radius: 30px;
    transform: rotate(0deg);
  }
  .hero-floating-card {
    width: calc(100% - 16px);
    left: 8px;
    right: 8px;
  }
  .hero-floating-card-top {
    top: auto;
    bottom: 104px;
  }
  .hero-floating-card-bottom {
    bottom: 14px;
  }
  .hero-home-cards,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .category-card,
  .category-large {
    min-height: 270px;
    border-radius: 26px;
  }
  .category-card > div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .modern-contact-box,
  .split-card,
  .process-card {
    border-radius: 28px;
  }
  .contact-form {
    padding: 22px;
  }
  .reviews-home-layout {
    grid-template-columns: 1fr;
  }
  .reviews-slider .review-soft-card {
    flex-basis: 100%;
    min-width: 100%;
  }
}
/* =========================
   DOPRACOWANIE RESPONSYWNOŚCI
   Ostatni nieparzysty kafelek jest wyśrodkowany
========================= */
.review-soft-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.google-review-link {
  margin-top: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-info {
  color: var(--muted);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (min-width: 769px) and (max-width: 1050px) {
  .hero-home-cards > :last-child:nth-child(odd),
  .advantages-grid > :last-child:nth-child(odd),
  .reviews-home-cards > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc((100% - 24px) / 2);
  }
}
.offer-gallery-grid {
  column-count: initial;
  column-gap: normal;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  justify-content: center;
}

.offer-gallery-grid .gallery-item {
  margin-bottom: 0;
}

.offer-gallery-grid .gallery-item img {
  height: 270px;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .offer-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-gallery-grid > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }
}
@media (max-width: 768px) {
  .offer-gallery-grid {
    grid-template-columns: 1fr;
  }
  .offer-gallery-grid > :last-child:nth-child(odd) {
    width: 100%;
  }
}
