:root{
  --brand:#B61F27;
  --brand2:#C13540;
  --text:#111;
  --muted:#5b5b5b;
  --bg:#ffffff;
  --card:#ffffff;
  --border:#e9e9e9;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 16px;
  --max: 1120px;
}

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

a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto; display:block}

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:1rem; top:1rem; width:auto; height:auto; padding:.75rem 1rem; background:#fff; border:2px solid var(--brand); border-radius:10px; z-index:9999}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width: 200px;
}
.brand img{width:140px; height:auto}
.brand .tagline{
  display:none;
  font-size:.85rem;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:.25rem;
}
.nav a{
  display:inline-flex;
  align-items:center;
  padding:.55rem .8rem;
  border-radius:999px;
  color:var(--text);
  font-weight:600;
  letter-spacing:.2px;
}
.nav a[aria-current="page"]{
  background:rgba(182,31,39,.08);
  color:var(--brand);
}
.nav a:hover{
  background:rgba(182,31,39,.08);
  text-decoration:none;
}

.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:.55rem .65rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.menu-btn svg{width:22px; height:22px}

@media (max-width: 840px){
  .brand .tagline{display:none}
  .menu-btn{display:inline-flex; align-items:center; justify-content:center}
  .nav{
    position:absolute;
    left:0; right:0;
    top:100%;
    background:#fff;
    border-bottom:1px solid var(--border);
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:.6rem 1rem 1rem;
  }
  .nav.open{display:flex}
  .nav a{border-radius:12px}
}

.hero{
  padding: 2.2rem 0 1.4rem;
}
.hero-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 330px;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.90), rgba(255,255,255,.55) 55%, rgba(255,255,255,.15)),
    url("assets/img/head-remadat.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}
.hero-content{
  position:relative;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  display:grid;
  gap:1rem;
  max-width: 740px;
}
.kicker{
  color:var(--brand);
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
}
h1{
  margin:0;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height:1.15;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size: 1.05rem;
}
.hero-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:.25rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.75rem 1rem;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
  color:var(--text);
}
.btn.primary{
  background: var(--brand);
  border-color: var(--brand);
  color:#fff;
}
.btn.primary:hover{background: #9f1a22; border-color:#9f1a22; text-decoration:none}
.btn:hover{text-decoration:none; border-color:#d8d8d8}

.section{
  padding: 1.6rem 0;
}
.section h2{
  margin: 0 0 .5rem;
  font-size: 1.5rem;
}
.section p{margin:.4rem 0; color:var(--muted)}

.grid{
  display:grid;
  gap:1rem;
}
.grid.cols-3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.grid.cols-2{grid-template-columns: repeat(2, minmax(0, 1fr))}
@media (max-width: 900px){
  .grid.cols-3{grid-template-columns: 1fr 1fr}
}
@media (max-width: 620px){
  .grid.cols-3, .grid.cols-2{grid-template-columns: 1fr}
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  overflow:hidden;
}
.card.pad{padding: 1rem 1.1rem}
.card h3{margin:0 0 .35rem; font-size:1.05rem}
.card p{margin:0; color:var(--muted)}
.icon{
  width:42px; height:42px;
  border-radius: 14px;
  background: rgba(182,31,39,.10);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:.65rem;
  border: 1px solid rgba(182,31,39,.18);
}
.icon svg{width:22px; height:22px; fill: var(--brand)}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.8rem;
}
.pill{
  font-size:.88rem;
  padding:.35rem .6rem;
  border-radius:999px;
  background: rgba(182,31,39,.08);
  color:var(--brand);
  border: 1px solid rgba(182,31,39,.16);
  font-weight:700;
}

.pagehead{
  padding: 1.6rem 0 1rem;
}
.pagehead h1{font-size: clamp(1.6rem, 2.8vw, 2.1rem)}
.breadcrumbs{color:var(--muted); font-size:.92rem}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:var(--brand)}

.gallery img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery .caption{
  padding:.9rem 1rem 1rem;
}
.gallery .caption strong{display:block; margin-bottom:.2rem}

.contact-wrap{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:1rem;
}
@media (max-width: 860px){
  .contact-wrap{grid-template-columns:1fr}
}

.form{
  display:grid;
  gap:.75rem;
}
.field label{display:block; font-weight:700; margin:0 0 .25rem}
.field input, .field textarea{
  width:100%;
  padding:.75rem .85rem;
  border:1px solid var(--border);
  border-radius: 14px;
  font:inherit;
}
.field textarea{min-height: 140px; resize: vertical}
.note{
  font-size:.92rem;
  color:var(--muted);
}

.footer{
  margin-top: 1.5rem;
  padding: 1.3rem 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:.92rem;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--brand)}
.small-links{display:flex; gap:.9rem; flex-wrap:wrap}


/* Lightbox */
.lightbox-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 1rem;
  z-index: 1000;
}
.lightbox-overlay.open{display:flex}
.lightbox-dialog{
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  background:#111;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.lightbox-dialog img{
  width:100%;
  height:auto;
  max-height: 88vh;
  object-fit: contain;
  background:#111;
}
.lightbox-close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.lightbox-close:hover{background: rgba(0,0,0,.55)}
.lb-link{cursor: zoom-in}
.map{
  width:100%;
  height: 320px;
  border:0;
  border-radius: 14px;
}
