/* =========================
   STYLE DLA PODSTRON
========================= */
/* Blokada zaznaczania i menu kontekstowego */
img, video {
  user-select: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/* Zapobieganie przeciąganiu */
img, video {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
/* HERO Z DUŻYM ZDJĘCIEM */
.subpage-hero {
  position: relative;
  height: 100vh;
  margin-bottom: 6px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.hero-intro + .hero-intro {
  padding-top: 20px;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.subpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px clamp(20px, 5vw, 120px);
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.subpage-hero-content h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 clamp(20px, 2.8vw, 40px) 0;
}

.subpage-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 0 clamp(20px, 2.8vw, 40px) 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .subpage-hero {
    align-items: flex-end;
  }

  .subpage-hero-content {
    padding: 40px 20px;
    align-items: flex-start;
  }

  .subpage-hero-content h1 {
    font-size: clamp(28px, 7vw, 44px);
  }
}


ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 24px; /* odstęp tekstu od ikonki */
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.80em; /* wyrównanie do tekstu */
  width: 12px;   /* 👈 SKALA IKONY */
  height: 12px;  /* 👈 SKALA IKONY */
  background-image: url("assets/icons/shortArrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
/* LAYOUT TREŚCI - wyśrodkowany nagłówek, pełna szerokość tekstu */
.page-content-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title-center {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; /* Your kitchen. Your story */
  text-align: center;
  margin-bottom: 60px;
  color: #000414;
}


.page-text-full {
  width: 100%;
}

.page-text-full p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}
.page-text-full h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #000414;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-text-full p:last-child {
  margin-bottom: 0;
}

.page-text-full ul {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
  margin-left: 32px;
}

/* =========================
   HORIZONTAL OFFER TILES
========================= */

.three-columns-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.three-columns a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.three-columns {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 42px;
}

/* SCROLLBAR – subtelny */
.three-columns::-webkit-scrollbar {
  height: 6px;
}

.three-columns::-webkit-scrollbar-track {
  background: transparent;
}

.three-columns::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

/* TILE */
.three-columns .column {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-snap-align: start;
}

/* IMAGE */
.column-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Second image crossfade on hover */
.column-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.column:hover .column-img-hover {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .column:hover .column-image img {
  transform: scale(1.05);
}

/* FOOTER */
.column-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.column-label {
  font-size: 18px;
  font-weight: 700;
  color: #000414;
  letter-spacing: 0.06em;
}

.column-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.column:hover .column-arrow {
  transform: translateX(4px);
}

/* DESCRIPTION (jeśli używasz) */
.column-description {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .three-columns-section {
    padding: 0 24px;
  }

  .three-columns {
    gap: 24px;
  }

  .three-columns .column {
    flex: 0 0 80%;
  }

  .column-footer {
    justify-content: space-between;
  }
}
/* =========================
   CONTACT PAGE STYLES
========================= */

.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-card {
  padding: 28px 24px;
  background: #f8f8f8;
  border-radius: 2px;
  text-align: center;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: #19247C;
  color: #fff;
  border-radius: 50%;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000414;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.contact-highlight {
  font-weight: 700;
  color: #000414;
  margin-bottom: 8px;
}

.contact-card a {
  color: #000414;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-card a:hover {
  opacity: 0.7;
}

/* Team Section */
.contact-team {
  margin-bottom: 80px;
}

.contact-team h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
  color: #000414;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  padding: 48px 40px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.team-member-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
}

.team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #19247C;
  color: #fff;
  font-size: 52px;
  font-weight: 700;
}

.team-member h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #000414;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-phone,
.team-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #000414;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s;
}

.team-phone:hover,
.team-email:hover {
  opacity: 0.7;
}

.team-phone svg,
.team-email svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* Map Section */
.contact-map {
  margin-bottom: 40px;
}

.contact-map h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
  color: #000414;
}

.map-container {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 48px 16px;
  }

  .contact-team h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-member {
    padding: 20px 12px;
  }

  .team-member-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
  }

  .team-placeholder {
    font-size: 26px;
  }

  .team-member h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .team-contact {
    gap: 10px;
  }

  .team-phone,
  .team-email {
    font-size: 13px;
    gap: 6px;
  }

  .team-phone svg,
  .team-email svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .contact-card-icon {
    width: 56px;
    height: 56px;
  }
}

/* =========================
   BLOG / AKTUALNOŚCI
========================= */

.blog-section {
  padding: 80px 20px 100px;
  background: #fff;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 32px 28px;
}

.blog-card-date {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.blog-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #000414;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
  color: #0047AB;
}

.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #000414;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
  gap: 12px;
}

.blog-card-readmore svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-readmore svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 16px 80px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-card-content {
    padding: 28px 24px;
  }

  .blog-card-title {
    font-size: 20px;
  }
}

/* =========================
   SINGLE POST STYLES
========================= */

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.post-meta time {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.3px;
}

.post-category {
  padding: 6px 14px;
  background: #000414;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.post-toc li::before {
  top: 0.4em; /* wyśrodkowanie strzałek w spisie tresci */
}

.page-text-full h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #000414;
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-text-full h2:first-of-type {
  margin-top: 0;
}

.post-image {
  margin: 48px auto;
  max-width: 600px;
  width: 100%;
}

.post-image img {
  width: 100%;
  max-width: 600;
  height: auto;
  display: block;
  border-radius: 0;
}

.post-image-caption {
  margin-top: 12px;
  font-size: 14px;
  color: #888;
  font-style: italic;
  text-align: center;
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #000414;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s;
}

.post-back-link:hover {
  gap: 12px;
  color: #0047AB;
}

.post-back-link svg {
  transition: transform 0.3s;
}

.post-back-link:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .post-image {
    margin: 32px 0;
  }

  .post-footer {
    margin-top: 48px;
  }
}
.page-text-full a {
  color: #19247C;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-text-full a:hover {
  color: #0047AB;
}

/* =========================
   RELATED POSTS
========================= */

.related-posts {
  margin: 64px 0;
  padding: 32px;
  background: #f8f8f8;
  border-left: 4px solid #19247C;
}

.related-posts h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000414;
  letter-spacing: 0.5px;
}

.related-posts ul {
  margin: 0;
}

.related-posts li {
  margin-bottom: 0;
}

.related-posts li::before {
  top: 0.3em; 
}

.related-posts li:last-child {
  margin-bottom: 0;
}

.related-posts a {
  font-size: 15px;
  color: #000414;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}


.related-posts a:hover {
  color: #0047AB;
}

/* Mobile */
@media (max-width: 768px) {
  .related-posts {
    padding: 24px;
    margin: 48px 0;
  }
}

/* =========================
   POST AUTHOR
========================= */

.post-author {
  margin: 80px 0;
  padding: 32px;
  background: #f8f8f8;
  display: flex;
  gap: 24px;
  align-items: center;
}

.post-author img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.post-author .author-name {
  font-size: 16px;
  font-weight: 700;
  color: #000414;
  margin-bottom: 8px;
}

.post-author .author-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;

}

/* Mobile */
@media (max-width: 768px) {
  .post-author {
    flex-direction: column;
    text-align: center;
  }

  .post-author img {
    margin-bottom: 12px;
  }
}

/* =========================
   POST TABLE OF CONTENTS
========================= */

.post-toc {
  margin: 48px 0 64px;
  padding: 32px;
  background: #f8f8f8;
  border-left: 4px solid #19247C;
}

.post-toc h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000414;
  letter-spacing: 0.5px;
}

.post-toc ul {
  margin: 0;
}

.post-toc li {
  margin-bottom: 12px;
}

.post-toc li:last-child {
  margin-bottom: 0;
}

.post-toc a {
  font-size: 15px;
  color: #000414;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}



.post-toc a:hover {
  color: #0047AB;
}

/* Mobile */
@media (max-width: 768px) {
  .post-toc {
    padding: 24px;
    margin: 40px 0;
  }
}
/* =========================
   GALLERY FILTER SYSTEM
========================= */
.gallery-filter-section {
  padding: 20px 20px;
  background: #fff;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-intro p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 16px;
  font-weight: 700;
  color: #000414;
  letter-spacing: 0.5px;
}

.filter-btn {
  padding: 0;
  background: none;
  border: none;
  color: #888;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.filter-btn:hover {
  color: #000414;
}

.filter-btn.active {
  color: #000414;
  font-weight: 700;
}

/* Gallery Grid - używa tych samych styli co three-columns */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.gallery-grid .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Hidden state for filtering */
.gallery-grid .column.hidden {
  display: none;
}

/* Pokaż wszystkie button */
.gallery-show-all-wrapper {
  text-align: center;
  padding: 0 20px 48px;
}

.gallery-show-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1.5px solid #19247C;
  color: #19247C;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.gallery-show-all-btn:hover {
  background: #19247C;
  color: #fff;
}

/* =========================
   GALLERY CAROUSEL - dla kart z wieloma zdjęciami
========================= */
.column-image.has-carousel {
  position: relative;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid .column:hover .gallery-slide.active img,
.gallery-grid .column:hover .gallery-slide.active video {
  transform: scale(1.05);
}

/* Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, opacity 0.3s;
  opacity: 0;
  font-size: 24px;
}

.gallery-grid .column:hover .gallery-nav {
  opacity: 1;
}

.gallery-nav:hover {
  background: rgba(0,0,0,0.8);
}

.gallery-nav-prev {
  left: 12px;
}

.gallery-nav-next {
  right: 12px;
}

/* Dots indicator */
.gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.gallery-dot.active {
  background: rgba(255,255,255,1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .gallery-filter-section {
    padding: 60px 16px;
  }
  
  .filter-buttons {
    gap: 24px;
  }
  
  .filter-label {
    font-size: 15px;
  }
  
  .filter-btn {
    font-size: 15px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .gallery-grid .column {
    align-items: center;
    text-align: center;
  }
  
  .gallery-grid .column-image {
    max-width: 420px;
    margin: 0 auto;
  }
  
  .gallery-grid .column-footer {
    justify-content: center;
    gap: 12px;
  }
}

/* ========================= O NAS PAGE ========================= */

.onas-content {
  padding: 80px 0 100px;
  background: #fff;
}

/* Sekcja z tekstem i zdjęciem */
.onas-section {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.onas-section:last-of-type {
  margin-bottom: 60px;
}

/* Sekcja odwrócona - zdjęcie z lewej */
.onas-section-reverse {
  flex-direction: row-reverse;
}

/* Tekst i zdjęcie - równa szerokość */
.onas-text,
.onas-image {
  flex: 1;
}

/* Listy w sekcjach onas-text */
.onas-text ul {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-top: 20px;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.onas-text ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
}

.onas-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  background: url("assets/icons/shortArrow.svg") no-repeat center / contain;
}

.onas-text ul li:last-child {
  margin-bottom: 0;
}

/* Tekst */
.onas-text h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: #000414;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.onas-text p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.onas-text p:last-child {
  margin-bottom: 0;
}

/* Zdjęcie */
.onas-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.onas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.onas-section:hover .onas-image img {
  transform: scale(1.05);
}

/* Nagłówek przed teamem */
.onas-team-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: #000414;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Podsumowanie na końcu */
.onas-summary {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .onas-content {
    padding: 60px 0 80px;
  }

  .onas-section,
  .onas-section-reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .onas-section:last-of-type {
    margin-bottom: 40px;
  }

  .onas-image {
    height: 400px;
  }

  .onas-team-title {
    margin-bottom: 60px;
  }

  .onas-summary {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .onas-section {
    margin-bottom: 60px;
  }

  .onas-image {
    height: 300px;
  }

  .onas-team-title {
    margin-bottom: 40px;
  }

  .onas-summary {
    margin-top: 32px;
  }
}
/* =========================
   DLA ARCHITEKTA PAGE
========================= */

.architect-content {
  padding: 80px 0 100px;
  background: #fff;
}

/* Sekcja z tekstem i zdjęciem */
.architect-section {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.architect-section:last-of-type {
  margin-bottom: 80px;
}

/* Sekcja odwrócona - zdjęcie z lewej */
.architect-section-reverse {
  flex-direction: row-reverse;
}

/* Tekst i zdjęcie - równa szerokość */
.architect-text,
.architect-image {
  flex: 1;
}

/* Tekst */
.architect-text h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: #000414;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.architect-text p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.architect-text p:last-child {
  margin-bottom: 0;
}

.architect-text ul {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-top: 20px;

  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.architect-text ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px; /* miejsce na strzałkę */
}

.architect-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em; /* idealne wyrównanie do tekstu */
  width: 12px;
  height: 12px;
  background: url("../assets/icons/shortArrow.svg") no-repeat center / contain;
}

.architect-text ul li:last-child {
  margin-bottom: 0;
}

/* Zdjęcie */
.architect-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.architect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.architect-section:hover .architect-image img {
  transform: scale(1.05);
}

/* CTA Section - pełna szerokość */
.architect-cta {
  width: 100%;
  max-width: none;
  margin: 80px 0 0;
  padding: 80px 40px;
  background: #f8f8f8;
  text-align: center;
}

.architect-cta h2,
.architect-cta p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.architect-cta h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: #000414;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.architect-cta p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}

.architect-cta-button {
  display: inline-block;
  padding: 1em 2em;
  border-radius: 999px;
  background: #19247C;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: clamp(15px, 1.5vw, 20px);
}

.architect-cta-button:hover {
  background: #c4c9f3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 36, 124, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .architect-content {
    padding: 60px 0 80px;
  }

  .architect-section,
  .architect-section-reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .architect-section:last-of-type {
    margin-bottom: 60px;
  }

  .architect-image {
    height: 400px;
  }

  .architect-cta {
    padding: 40px 24px;
    margin-top: 40px;
  }

  .architect-cta-button {
    padding: 0.75em 1.5em;
    font-size: clamp(14px, 1.3vw, 16px);
  }
}

@media (max-width: 480px) {
  .architect-section {
    margin-bottom: 60px;
  }

  .architect-image {
    height: 300px;
  }

  .architect-text ul {
    margin-left: 20px;
  }

  .architect-cta {
    padding: 32px 20px;
  }
}

