
:root{
  --plum:#5a2a2a;
  --burgundy:#7a1f2c;
  --accent:#b23a48;
  --cream:#faf8f6;
  --ink:#222;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--cream);
}
.hero{
  padding:2.25rem 1rem 1.25rem;
  text-align:center;
  color:#fff;
  background:linear-gradient(90deg,var(--plum),var(--accent));
}
.brand-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
  color: #fff;
}
.tagline{opacity:.95;margin:.1rem 0 0}
.grid{
  padding:2rem 1rem 3rem;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.25rem;
  max-width:1200px;
  margin:0 auto;
}
.card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
}
.card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  background:#000;
}
.card h3{
  margin:.85rem 1rem .25rem;
  color:var(--burgundy);
  font-size:1.2rem;
}
.card p{
  margin:0 1rem 1rem;
  line-height:1.45;
  font-size:.98rem;
}
.controls{
  display:flex;
  gap:.5rem;
  padding:0 1rem 1rem;
  flex-wrap:wrap;
}
button{
  appearance:none;
  border:none;
  border-radius:12px;
  padding:.6rem 1rem;
  background:var(--accent);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:transform .04s ease, background .2s ease;
}
button:hover{background:#8e2d39}
button:active{transform:translateY(1px)}
.pause{background:#555}
.pause:hover{background:#333}
.stop{background:#2f2f2f}
.stop:hover{background:#111}

.gallery{
  max-width:1200px;
  margin:0 auto 3rem;
  padding:0 1rem;
}
.gallery h2{
  text-align:center;
  color:var(--burgundy);
  margin:0 0 1rem;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  background:#000;
}

footer{
  text-align:center;
  padding:1.5rem;
  color:#666;
}
