/* PYSEPX - style.css */
:root{
  --bg:#ffffff;
  --text:#101114;
  --muted:#5b5e66;
  --card:#ffffff;
  --line:#e7e7ea;
  --red:#C30000;
  --red2:#ff2a2a;
  --shadow: 0 18px 40px rgba(16,17,20,.08);
  --shadow2: 0 10px 22px rgba(16,17,20,.08);
  --radius: 18px;
  --radius2: 14px;
  --container: 1120px;
  --focus: 0 0 0 4px rgba(195,0,0,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
a:focus{outline:none; box-shadow: var(--focus); border-radius:10px}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid rgba(231,231,234,.75);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:140px;
}
.brand-logo{
  height:46px;
  width:auto;
  border-radius:12px;
  box-shadow: 0 10px 20px rgba(16,17,20,.08);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-weight:600;
  font-size:14px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
}
.nav a:hover{
  color:var(--text);
  background: rgba(195,0,0,.06);
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(231,231,234,.9);
  background:#fff;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  background:var(--text);
  margin:5px auto;
  border-radius:10px;
}

.hero{
  position:relative;
  padding:78px 0 40px;
  overflow:hidden;
}
.hero-wave{
  position:absolute;
  left:-20%;
  right:-20%;
  bottom:-120px;
  height:220px;
  background:
    radial-gradient(closest-side, rgba(195,0,0,.12), transparent 68%),
    radial-gradient(closest-side, rgba(255,42,42,.10), transparent 70%);
  filter: blur(2px);
  transform: rotate(-4deg);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  font-size:12px;
}
.kicker .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: linear-gradient(120deg, var(--red), var(--red2));
  box-shadow: 0 0 0 6px rgba(195,0,0,.10);
}

.hero-title{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero-subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:54ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin: 8px 0 20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  border:1px solid rgba(231,231,234,.9);
  background:#fff;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(120deg, var(--red), var(--red2));
  color:#fff;
  border-color: transparent;
}
.btn-ghost{
  background:#fff;
  color:var(--text);
}

.quick-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.qcard{
  background: var(--card);
  border:1px solid rgba(231,231,234,.9);
  border-radius: var(--radius2);
  padding:14px;
  box-shadow: var(--shadow2);
  display:flex;
  align-items:center;
  gap:12px;
}
.qicon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(195,0,0,.08);
  border:1px solid rgba(195,0,0,.18);
}
.qlabel{font-size:12px; color:var(--muted); font-weight:600}
.qtext{font-size:14px; font-weight:700}

.hero-art{
  display:flex;
  justify-content:flex-end;
}
.art-card{
  width:min(420px, 100%);
  background: #fff;
  border:1px solid rgba(231,231,234,.9);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.art-card::before{
  content:"";
  position:absolute;
  inset:-80px -80px auto auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(255,42,42,.22), transparent 60%);
  transform: rotate(18deg);
}
.hero-logo{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(231,231,234,.9);
  box-shadow: 0 16px 28px rgba(16,17,20,.08);
}
.art-lines{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.art-lines span{
  height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(16,17,20,.08), rgba(195,0,0,.12));
}
.art-lines span:nth-child(2){ width:86% }
.art-lines span:nth-child(3){ width:72% }

.art-badge{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.badge-pill{
  font-size:12px;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(195,0,0,.18);
  background: rgba(195,0,0,.06);
  color:var(--text);
}

.section{
  padding:72px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(195,0,0,.035), rgba(195,0,0,.01));
  border-top:1px solid rgba(231,231,234,.8);
  border-bottom:1px solid rgba(231,231,234,.8);
}
.section-head{
  display:grid;
  gap:8px;
  margin-bottom:22px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing:-.02em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

.about-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.about-card{
  background:#fff;
  border:1px solid rgba(231,231,234,.9);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.about-card h3{ margin:0 0 8px; font-size:16px }
.about-card p{ margin:0; color:var(--muted) }
.about-card .lead{ color:var(--text); font-weight:600 }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid rgba(231,231,234,.9);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:auto -50px -50px auto;
  width:160px;
  height:160px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(195,0,0,.15), transparent 65%);
}
.card h3{
  margin:0;
  font-size:16px;
  letter-spacing:-.01em;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.gitem{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(231,231,234,.9);
  background:#fff;
  box-shadow: var(--shadow2);
  position:relative;
  cursor:pointer;
}
.gitem img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition: transform .18s ease;
}
.gitem:hover img{ transform: scale(1.03); }
.gcap{
  position:absolute;
  left:10px;
  bottom:10px;
  background: rgba(16,17,20,.72);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter: blur(6px);
}

.empty-state{
  margin-top:16px;
  display:none;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius: var(--radius);
  border:1px dashed rgba(195,0,0,.35);
  background: rgba(195,0,0,.04);
}
.empty-state.show{ display:flex; }
.empty-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(195,0,0,.10);
  border:1px solid rgba(195,0,0,.20);
}
.empty-state h3{ margin:0 0 6px; font-size:16px }
.empty-state p{ margin:0; color:var(--muted) }

.location-card{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(231,231,234,.9);
  background:#fff;
  box-shadow: var(--shadow2);
}
.loc-left{ display:flex; align-items:flex-start; gap:12px; }
.loc-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(195,0,0,.08);
  border:1px solid rgba(195,0,0,.18);
}
.loc-title{ font-weight:800; letter-spacing:-.01em }
.loc-note{ color:var(--muted); font-weight:600; margin-top:4px }
.loc-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.contact-card{
  background:#fff;
  border:1px solid rgba(231,231,234,.9);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.contact-card h3{ margin:0 0 10px; font-size:16px }
.contact-card .lead{ margin:0; color:var(--text); font-weight:600 }
.contact-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.footer{
  border-top:1px solid rgba(231,231,234,.8);
  padding:26px 0;
  background:#fff;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{
  height:44px;
  border-radius:14px;
  border:1px solid rgba(231,231,234,.9);
  box-shadow: var(--shadow2);
}
.footer-title{ font-weight:900; letter-spacing:-.01em }
.footer-sub{ color:var(--muted); font-weight:700; font-size:13px }
.footer-info{ color:var(--muted); font-weight:600; display:grid; gap:6px; max-width:78ch }
.footer-links a{ color:var(--text); font-weight:800 }
.footer-links a:hover{ color:var(--red) }

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(120deg, var(--red), var(--red2));
  color:#fff;
  font-weight:900;
  box-shadow: 0 18px 40px rgba(195,0,0,.28);
  border:1px solid rgba(255,255,255,.18);
}
.wa-dot{
  width:10px; height:10px; border-radius:50%;
  background:#fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,.20);
}
.wa-text{ letter-spacing:.02em; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ justify-content:flex-start; }
  .quick-cards{ grid-template-columns: 1fr; }
  .about-grid, .cards, .contact-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .location-card{ flex-direction:column; align-items:flex-start; }
  .loc-right{ width:100%; justify-content:flex-start; }
}

@media (max-width: 820px){
  .nav-toggle{ display:inline-block; }
  .nav{
    position:absolute;
    right:20px;
    top:72px;
    background:#fff;
    border:1px solid rgba(231,231,234,.9);
    border-radius:18px;
    box-shadow: var(--shadow);
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    min-width:220px;
  }
  .nav.open{ display:flex; }
  .nav a{ padding:12px 12px; }
}
