/* === CATERING SECTION STYLES === */
.catering-section { font-family: 'Barlow Condensed', sans-serif; }

/* --- HERO --- */
.ct-hero {
  background: #EFEEEA;
  padding: 72px 60px 64px;
}
.ct-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,.12);
  padding-bottom: 40px;
  margin-bottom: 48px;
}
.ct-hero-toplabel {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #999;
  font-family: 'Barlow', sans-serif;
}
.ct-hero-toptag {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid #AC0202;
  color: #AC0202;
  font-family: 'Barlow', sans-serif;
}
.ct-hero-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: flex-end;
}
.ct-hero-hl {
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .88;
  color: #151515;
  letter-spacing: -.02em;
}
.ct-hero-hl span { color: #AC0202; }
.ct-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  min-width: 280px;
  max-width: 320px;
}
.ct-hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  font-family: 'Barlow', sans-serif;
  text-align: right;
}
.ct-hero-desc strong { color: #151515; font-weight: 400; }
.ct-hero-cta {
  background: #AC0202;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 30px;
  cursor: pointer;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.ct-hero-cta:hover { background: #8a0101; }
.ct-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,.12);
  margin-top: 48px;
  padding-top: 36px;
}
.ct-stat-val {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #AC0202;
  line-height: 1;
}
.ct-stat-label {
  font-size: 12px;
  color: #888;
  font-family: 'Barlow', sans-serif;
  margin-top: 6px;
  line-height: 1.6;
  padding-right: 28px;
}

/* --- TICKER --- */
.ct-ticker {
  background: #151515;
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ct-ticker-inner {
  display: inline-block;
  animation: ctTick 24s linear infinite;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(239,238,234,.35);
}
.ct-ticker-inner span { color: #AC0202; }
@keyframes ctTick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- CO ROBIMY --- */
.ct-corobimy {
  background: #EFEEEA;
  padding: 80px 60px 0;
}
.ct-section-head { margin-bottom: 48px; }
.ct-section-head h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  color: #151515;
}
.ct-section-head h2 span { color: #AC0202; }
.ct-section-head p {
  margin-top: 14px;
  font-size: 14px;
  color: #666;
  font-family: 'Barlow', sans-serif;
  max-width: 520px;
  line-height: 1.7;
}

/* --- FORMAT CARDS --- */
.ct-fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ct-fcard {
  background: #151515;
  padding: 40px 36px 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: background .3s;
  min-height: 320px;
}
.ct-fcard:hover { background: #1f1f1f; }
.ct-fcard.ct-accent { background: #AC0202; }
.ct-fcard.ct-accent:hover { background: #960202; }
.ct-fcard.ct-light { background: #EFEEEA; }
.ct-fcard.ct-light:hover { background: #e5e4e0; }

.ct-ftag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.45);
  font-family: 'Barlow', sans-serif;
  margin-bottom: 20px;
  white-space: nowrap;
}
.ct-fcard.ct-light .ct-ftag {
  border-color: rgba(0,0,0,.15);
  color: #888;
}

/* stała wysokość nagłówka — wyrównanie bazowe */
.ct-fname-wrap {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.ct-fname {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .92;
  color: #EFEEEA;
}
.ct-fcard.ct-light .ct-fname { color: #151515; }

.ct-fdesc {
  font-size: 13px;
  color: rgba(239,238,234,.5);
  line-height: 1.7;
  font-family: 'Barlow', sans-serif;
  flex: 1;
}
.ct-fcard.ct-light .ct-fdesc { color: #666; }

.ct-fcard-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.ct-fmore {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #B5C9DA;
  font-family: 'Barlow Condensed', sans-serif;
  border-bottom: 1px solid rgba(181,201,218,.3);
  padding-bottom: 2px;
}
.ct-fcard.ct-light .ct-fmore {
  color: #AC0202;
  border-bottom-color: rgba(172,2,2,.2);
}
.ct-fcard.ct-accent .ct-fmore {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.3);
}
.ct-farr {
  font-size: 20px;
  color: #AC0202;
  transition: transform .3s;
  line-height: 1;
}
.ct-fcard.ct-accent .ct-farr { color: #fff; }
.ct-fcard:hover .ct-farr { transform: translate(4px,-4px); }

/* --- DETAIL PANELS --- */
.ct-detail {
  display: none;
  background: #EFEEEA;
  border-top: 2px solid #151515;
  padding: 60px 60px;
}
.ct-detail.ct-open { display: block; }
.ct-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ct-detail h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 20px;
  color: #151515;
}
.ct-detail h3 span { color: #AC0202; }
.ct-detail p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 16px;
}
.ct-detail-list { list-style: none; margin-top: 8px; }
.ct-detail-list li {
  font-size: 13px;
  color: #444;
  font-family: 'Barlow', sans-serif;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.ct-detail-list li::before {
  content: '→';
  color: #AC0202;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}
.ct-detail-close {
  margin-top: 24px;
  background: none;
  border: 1.5px solid #151515;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  transition: all .3s;
}
.ct-detail-close:hover { background: #151515; color: #EFEEEA; }

/* --- PROCES --- */
.ct-process {
  background: #151515;
  padding: 80px 60px;
}
.ct-process h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #EFEEEA;
  margin-bottom: 52px;
  line-height: .95;
}
.ct-process h2 span { color: #AC0202; }
.ct-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.ct-step {
  padding: 32px 28px;
  border-top: 2px solid rgba(239,238,234,.08);
}
.ct-step:first-child { border-top-color: #AC0202; }
.ct-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #AC0202;
  margin-bottom: 18px;
  display: block;
}
.ct-step h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #EFEEEA;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.ct-step p {
  font-size: 13px;
  color: rgba(239,238,234,.4);
  line-height: 1.7;
  font-family: 'Barlow', sans-serif;
}

/* --- OKAZJE --- */
.ct-occ {
  background: #EFEEEA;
  padding: 80px 60px;
}
.ct-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.ct-tag {
  padding: 9px 18px;
  border: 1.5px solid rgba(0,0,0,.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  color: #151515;
  background: transparent;
  font-family: 'Barlow Condensed', sans-serif;
  white-space: nowrap;
}
.ct-tag:hover, .ct-tag.ct-active {
  background: #151515;
  color: #EFEEEA;
  border-color: #151515;
}
.ct-tag.ct-red { border-color: #AC0202; color: #AC0202; }
.ct-tag.ct-red:hover, .ct-tag.ct-red.ct-active {
  background: #AC0202;
  color: #fff;
  border-color: #AC0202;
}

/* --- ZAUFALI NAM --- */
.ct-trust {
  background: #151515;
  padding: 80px 60px;
}
.ct-trust-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.ct-trust-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #EFEEEA;
  line-height: .95;
}
.ct-trust-head h2 span { color: #AC0202; }
.ct-trust-head p {
  font-size: 13px;
  color: rgba(239,238,234,.35);
  font-family: 'Barlow', sans-serif;
  max-width: 220px;
  text-align: right;
  line-height: 1.6;
}
.ct-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.ct-logo-box {
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: border-color .3s;
}
.ct-logo-box:hover { border-color: rgba(255,255,255,.15); }
.ct-logo-placeholder {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(239,238,234,.18);
  text-align: center;
  line-height: 1.4;
}

/* REFERENCJE */
.ct-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ct-review {
  background: rgba(255,255,255,.03);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.06);
}
.ct-review-q {
  font-size: 32px;
  color: #AC0202;
  line-height: 1;
  margin-bottom: 14px;
  font-family: 'Barlow', sans-serif;
}
.ct-review p {
  font-size: 13px;
  color: rgba(239,238,234,.5);
  line-height: 1.8;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 20px;
}
.ct-review-who {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #B5C9DA;
}
.ct-review-role {
  font-size: 11px;
  color: rgba(239,238,234,.25);
  font-family: 'Barlow', sans-serif;
  margin-top: 3px;
}

/* --- CTA BAND --- */
.ct-band {
  background: #AC0202;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ct-band h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: .95;
  flex-shrink: 0;
}
.ct-band-right {
  text-align: right;
  max-width: 320px;
}
.ct-band-right p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
  line-height: 1.7;
}
.ct-band-btn {
  display: inline-block;
  background: #fff;
  color: #AC0202;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  transition: background .3s;
  text-decoration: none;
}
.ct-band-btn:hover { background: #EFEEEA; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .ct-hero, .ct-corobimy, .ct-process, .ct-occ, .ct-trust, .ct-band {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ct-hero-main { grid-template-columns: 1fr; gap: 32px; }
  .ct-hero-right { align-items: flex-start; min-width: unset; max-width: 100%; }
  .ct-hero-desc { text-align: left; }
  .ct-hero-stats { grid-template-columns: 1fr 1fr; }
  .ct-fgrid { grid-template-columns: 1fr; }
  .ct-fname-wrap { height: auto; margin-bottom: 12px; }
  .ct-steps { grid-template-columns: 1fr 1fr; }
  .ct-logos { grid-template-columns: repeat(3, 1fr); }
  .ct-reviews { grid-template-columns: 1fr; }
  .ct-band { flex-direction: column; align-items: flex-start; }
  .ct-band-right { text-align: left; max-width: 100%; }
  .ct-detail-inner { grid-template-columns: 1fr; }
  .ct-trust-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ct-trust-head p { text-align: left; }
}
@media (max-width: 600px) {
  .ct-steps { grid-template-columns: 1fr; }
  .ct-logos { grid-template-columns: repeat(2, 1fr); }
  .ct-hero-stats { grid-template-columns: 1fr; }
  .ct-hero-top { flex-direction: column; gap: 12px; }
}