
* { box-sizing: border-box; }
html, body { margin:0; padding:0; color:#ffffff; background:#0e0e10; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.nav { background: linear-gradient(180deg, #b40000, #930000); position:sticky; top:0; z-index:60; box-shadow: 0 2px 0 rgba(255,255,255,.05); }
.nav-inner { display:flex; align-items:center; gap:24px; width:100%; padding:10px 0; }
.brand { display:flex; align-items:center; gap:12px; }
.brand img { width:40px; height:40px; object-fit:cover; border-radius:6px; background:#fff; }
.brand span { font-weight:900; letter-spacing:.5px; text-shadow:0 1px 0 #000; }
.nav-links { margin-left:auto; display:flex; gap:18px; }
.nav a { display:inline-block; padding:8px 6px; font-weight:600; }
.nav a:hover { text-decoration:underline; }

.hero-home { background:url('assets/ridge-bulls.jpg') center/cover no-repeat; }
.hero-inner { background:url('assets/inner-bg.jpg') center/cover fixed no-repeat; }
.overlay { background: rgba(0,0,0,.45); }
.hero { padding: 86px 0 72px; }
.hero h1 { margin:0 0 10px; font-size: clamp(28px,5vw,48px); }
.lead { font-size: clamp(16px,2.4vw,22px); color:#f3f4f6; }

.section { padding: 24px 16px; background: rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.08); border-radius: 12px; margin: 22px 0; }
.h2bar { background: #b40000; padding:10px 14px; border-radius:10px; display:inline-block; box-shadow: inset 0 -2px 0 rgba(0,0,0,.4); }
.h2bar h2 { margin:0; font-size: 20px; }

.grid { display:grid; gap:16px; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 980px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.story-block { display:grid; gap:16px; grid-template-columns: 1fr; align-items:center; margin: 24px 0; }
@media (min-width: 980px) { .story-block { grid-template-columns: 1fr 1fr; } }
.story-block .text { padding: 12px; }
.story-block .text h3 { margin-top:0; }
.story-block .img-wrap { width:100%; }
.story-block .img-wrap img { width:100%; height:100%; object-fit:cover; border-radius:12px; border:1px solid rgba(255,255,255,.12); }

.gallery-strip { display:grid; grid-auto-flow:column; grid-auto-columns: 280px; gap:12px; overflow:auto; padding-bottom:6px; }
.gallery-strip img { width:100%; height:180px; object-fit:cover; border-radius:12px; border:1px solid rgba(255,255,255,.15); cursor:pointer; }

.card { border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(0,0,0,.65); overflow:hidden; }
.card-body { padding:14px; }
.kv { display:grid; grid-template-columns: 1fr 1fr; gap:6px 12px; font-size:14px; }
.kv div { display:flex; justify-content:space-between; }
.filters { display:grid; gap:10px; grid-template-columns: repeat(1, minmax(0,1fr)); margin: 10px 0 18px; }
@media (min-width: 720px){ .filters { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.btn { background: #b40000; color:#fff; border:0; padding: 12px 16px; border-radius:10px; cursor:pointer; display:inline-block; }
.price { font-weight:800; }

.footer { padding: 28px 16px; background: #111; color:#bbb; font-size: 14px; border-top: 2px solid #700000; }
.small { color:#c9c9c9; font-size:13px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); display:none; align-items:center; justify-content:center; z-index:100; }
.lightbox img { max-width: 100vw; max-height: 100vh; border-radius: 10px; }
.lightbox.show { display:flex; }
.lightbox .close { position:absolute; top:16px; right:20px; font-size:28px; cursor:pointer; }

/* === Mobile polish === */
@media (max-width: 780px) {
  .nav-inner { gap: 12px; flex-wrap: wrap; padding: 12px 0; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 18px; }
  .nav-links { width: 100%; display: flex; flex-wrap: wrap; gap: 8px 12px; justify-content: space-between; }
  .nav a { padding: 12px 8px; font-size: 15px; }

  .hero { padding: 56px 0 42px; }
  .hero h1 { font-size: clamp(24px, 6vw, 34px); }
  .lead { font-size: 16px; }

  .section { padding: 18px 14px; }
  .h2bar h2 { font-size: 18px; }

  .story-block { grid-template-columns: 1fr; gap: 12px; }
  .story-block .text { padding: 6px 4px; }
  .story-block .img-wrap img { max-height: 54vh; object-fit: cover; }

  .gallery-strip { grid-auto-columns: 75vw; gap: 10px; }
  .gallery-strip img { height: 44vh; }

  .card-body { padding: 16px; }
  .kv { grid-template-columns: 1fr 1fr; gap: 8px 10px; font-size: 15px; }

  table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; border-collapse: collapse; }
  table th, table td { padding: 10px 12px 8px 0; }

  .btn { padding: 14px 16px; font-size: 16px; border-radius: 12px; }

  .footer { padding: 20px 14px; font-size: 13px; }
}
