html, body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


:root{
  --wpc-accent:#8a6a4a;
  --wpc-accent-2:#6f553b;
  --wpc-text:#111827;
  --wpc-muted:#6b7280;
  --wpc-border:rgba(17,24,39,.10);
  --wpc-shadow:0 14px 40px rgba(0,0,0,.08);
  --wpc-radius:18px;
  --wpc-max:1200px;
}

/* HERO */
.wpc-hero{
  position: relative;
  overflow: hidden;
  padding: 72px 20px;
}

.wpc-hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 40%, rgba(138,106,74,.18), transparent 55%),
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.85) 45%, rgba(255,255,255,.35) 70%, rgba(255,255,255,0) 100%),
    url("/storage/banner/banner.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.wpc-hero__inner{
  position: relative;
  max-width: var(--wpc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.wpc-pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.06);
  color: rgba(17,24,39,.75);
  font-size: 14px;
  font-weight: 600;
}

.wpc-hero__title{
  margin: 14px 0 10px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--wpc-text);
}

.wpc-hero__lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--wpc-muted);
  max-width: 560px;
}

.wpc-hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.wpc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid transparent;
}

.wpc-btn--primary{
  background: var(--wpc-accent);
  border-color: var(--wpc-accent);
  color:#fff;
}
.wpc-btn--primary:hover{ background: var(--wpc-accent-2); border-color: var(--wpc-accent-2); }

.wpc-btn--secondary{
  background: rgba(255,255,255,.85);
  border-color: var(--wpc-border);
  color: var(--wpc-text);
}

.wpc-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}

.wpc-stat{
  background:#fff;
  border: 1px solid var(--wpc-border);
  border-radius: var(--wpc-radius);
  box-shadow: var(--wpc-shadow);
  padding: 14px 14px;
}

.wpc-stat__big{
  font-size: 22px;
  font-weight: 800;
  color: var(--wpc-text);
  line-height: 1.1;
}
.wpc-stat__small{
  font-size: 12px;
  color: var(--wpc-muted);
  margin-top: 4px;
}

/* Right card */
.wpc-showcase{
  background:#fff;
  border: 1px solid var(--wpc-border);
  border-radius: 22px;
  box-shadow: var(--wpc-shadow);
  padding: 16px;
  position: relative;
}

.wpc-showcase__label{
  position:absolute;
  top: 14px;
  left: 14px;
  background: rgba(17,24,39,.92);
  color:#fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
}

.wpc-showcase__media{
  border-radius: 18px;
  overflow:hidden;
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
}

.wpc-showcase__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Mobile */
@media (max-width: 980px){
  .wpc-hero__inner{ grid-template-columns: 1fr; }
  .wpc-hero__title{ font-size: 40px; }
  .wpc-stats{ grid-template-columns: 1fr; }
}
/* FIX: header/menu príliš nízko */
:is(header, .header, .site-header, #header){
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: 0 !important;
}

/* MENU CTA button: Cenová ponuka (m302) */
#m302 > a{
  background: var(--wpc-accent) !important;
  color: #fff !important;
  padding: 10px 14px !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  border: 1px solid var(--wpc-accent) !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

#m302 > a:hover{
  background: var(--wpc-accent-2) !important;
  border-color: var(--wpc-accent-2) !important;
}

/* aby dropdown pod CTA vyzeral normálne (nezdedil button look) */
#m302 ul a{
  background: transparent !important;
  color: inherit !important;
  padding: 10px 12px !important;
  border-radius: 0 !important;
  border: 0 !important;
  display: block !important;
  font-weight: 600 !important;
}
/* SECTION HEAD */
.wpc-services{
  max-width: var(--wpc-max, 1200px);
  margin: 0 auto;
  padding: 40px 20px 10px;
}

.wpc-section-head h2{
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.wpc-section-head p{
  margin: 0 0 18px;
  color: var(--wpc-muted);
}

/* 3 cards grid */
.wpc-cards3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wpc-card{
  background: #fff;
  border: 1px solid var(--wpc-border);
  border-radius: var(--wpc-radius);
  box-shadow: var(--wpc-shadow);
  padding: 18px 18px;
}

.wpc-card__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(138,106,74,.18);
  margin-bottom: 10px;
}

.wpc-card h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.wpc-card p{
  margin: 0;
  color: var(--wpc-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* mobile */
@media (max-width: 980px){
  .wpc-cards3{ grid-template-columns: 1fr; }
}
/* PROJECTS */
.wpc-projects{
  max-width: var(--wpc-max, 1200px);
  margin: 0 auto;
  padding: 30px 20px 40px;
}

.wpc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.wpc-tile{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--wpc-border);
  box-shadow: var(--wpc-shadow);
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.wpc-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.wpc-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17,24,39,.92);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.wpc-tile:hover img{
  transform: scale(1.04);
  transition: transform .25s ease;
}

.wpc-projects__cta{
  margin-top: 16px;
}

/* mobile */
@media (max-width: 980px){
  .wpc-grid{ grid-template-columns: 1fr; }
}

/* STEPS */
.wpc-steps{
  max-width: var(--wpc-max, 1200px);
  margin: 0 auto;
  padding: 30px 20px 40px;
}

.wpc-steps__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wpc-step{
  background: #fff;
  border: 1px solid var(--wpc-border);
  border-radius: var(--wpc-radius);
  box-shadow: var(--wpc-shadow);
  padding: 18px 18px;
}

.wpc-step__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(138,106,74,.18);
  color: var(--wpc-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

.wpc-step h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.wpc-step p{
  margin: 0;
  font-size: 14px;
  color: var(--wpc-muted);
  line-height: 1.45;
}

/* responsive */
@media (max-width: 980px){
  .wpc-steps__grid{ grid-template-columns: 1fr; }
}

/* Typography polish */
.wpc-hero__lead,
.wpc-section-head p{
  font-size: 16px;
  line-height: 1.6;
}

.wpc-section-head h2{
  font-size: 34px;
  letter-spacing: -0.02em;
}
/* CTA STRIP */
.wpc-cta{
  padding: 20px 20px 60px;
}

.wpc-cta__inner{
  max-width: var(--wpc-max, 1200px);
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid var(--wpc-border);
  box-shadow: var(--wpc-shadow);
  background: linear-gradient(135deg, rgba(138,106,74,.14), rgba(255,255,255,.9));
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
}

.wpc-cta__text h2{
  margin: 0 0 6px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.wpc-cta__text p{
  margin: 0;
  color: var(--wpc-muted);
}

.wpc-cta__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wpc-cta__meta{
  width: 100%;
  text-align: right;
  font-size: 12px;
  color: var(--wpc-muted);
  margin-top: 6px;
}

/* mobile */
@media (max-width: 980px){
  .wpc-cta__inner{ grid-template-columns: 1fr; }
  .wpc-cta__actions{ justify-content: flex-start; }
  .wpc-cta__meta{ text-align: left; }
}
/* FOOTER polish */
footer, .footer, #footer{
  background: #111827 !important;
  color: rgba(255,255,255,.86) !important;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

footer a, .footer a, #footer a{
  color: rgba(255,255,255,.92) !important;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover, .footer a:hover, #footer a:hover{
  color: #fff !important;
  text-decoration: underline;
}

/* jemnejšie texty vo footeri */
footer p, footer li, footer small,
.footer p, .footer li, .footer small,
#footer p, #footer li, #footer small{
  color: rgba(255,255,255,.78) !important;
}

/* oddeľovače / linky */
footer hr, .footer hr, #footer hr{
  border-color: rgba(255,255,255,.10) !important;
}
/* Footer readability fix */
footer, .footer, #footer{
  background:#111827 !important;
}

footer, footer * ,
.footer, .footer * ,
#footer, #footer *{
  color: rgba(255,255,255,.86) !important;
}

footer a, .footer a, #footer a{
  color: rgba(255,255,255,.92) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

footer a:hover, .footer a:hover, #footer a:hover{
  color:#fff !important;
  text-decoration: underline !important;
}
/* WPC footer – readable + modern */
.wpc-footer{
  background: #111827;
  color: rgba(255,255,255,.88);
  padding: 28px 20px;
  margin-top: 30px;
}

.wpc-footer .column_block{
  width: 100% !important;
  max-width: 1200px;
  margin: 0 auto !important;
}

.wpc-footer a{
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-weight: 600;
}

.wpc-footer a:hover{
  text-decoration: underline;
}

.wpc-footer p,
.wpc-footer span,
.wpc-footer div{
  color: rgba(255,255,255,.82);
}

.wpc-footer p{
  margin: 8px 0;
}

.wpc-footer .copyright{
  text-align: center;
  font-size: 12px;
  margin-top: 18px;
  color: rgba(255,255,255,.70);
}

/* Mobile: stĺpce pod seba */
@media (max-width: 980px){
  .wpc-footer .column_block{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .wpc-footer .column_block > div{
    width: auto !important;
    margin-right: 0 !important;
  }
}
