<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gun Room LLC | Fall Catalog 156</title>
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0f172a;
color: #e5e7eb;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, #020617, #1e293b);
padding: 3rem 1rem;
text-align: center;
}
header h1 { margin: 0; font-size: 2.75rem; letter-spacing: 1px; }
header p { margin: 0.5rem 0; color: #cbd5f5; }
nav {
position: sticky;
top: 0;
z-index: 100;
background: #020617;
padding: 0.75rem;
text-align: center;
border-bottom: 1px solid #1e293b;
}
nav a {
color: #e5e7eb;
margin: 0 1rem;
text-decoration: none;
font-weight: 600;
}
nav a:hover { color: #38bdf8; }
.container {
max-width: 1200px;
margin: auto;
padding: 3rem 1.25rem;
background: #020617;
}
h2 {
font-size: 1.75rem;
margin-top: 3rem;
border-left: 4px solid #38bdf8;
padding-left: 0.75rem;
}
.info-box {
background: #020617;
border: 1px solid #1e293b;
border-radius: 12px;
padding: 1.25rem;
margin: 1.5rem 0;
color: #cbd5f5;
}
table {
width: 100%;
border-collapse: separate;
border-spacing: 0 0.75rem;
margin-top: 1.5rem;
font-size: 0.95rem;
}
th {
text-align: left;
padding: 0.75rem;
color: #94a3b8;
}
td {
background: #020617;
border: 1px solid #1e293b;
padding: 0.75rem;
vertical-align: top;
}
td:first-child { border-radius: 12px 0 0 12px; }
td:last-child { border-radius: 0 12px 12px 0; }
.price {
font-weight: 700;
color: #38bdf8;
white-space: nowrap;
}
.call-btn {
display: inline-block;
margin-top: 0.5rem;
padding: 0.5rem 0.75rem;
border-radius: 999px;
background: #22c55e;
color: #020617;
font-weight: 700;
text-decoration: none;
font-size: 0.85rem;
}
.call-btn:hover { background: #16a34a; }
footer {
background: #020617;
border-top: 1px solid #1e293b;
text-align: center;
padding: 2rem 1rem;
margin-top: 4rem;
color: #94a3b8;
font-size: 0.9rem;
}
.note { font-style: italic; color: #94a3b8; }
</style>
</head>
<body>
<header>
<h1>Gun Room, LLC</h1>
<p>Collecting, Dealing & Trading Since 1969</p>
<p>105 North 8th Street • Beresford, SD 57004 • (605) 763‑5090</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#terms">Terms</a>
<a href="#catalog">Catalog</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="about">
<h2>Welcome</h2>
<p>
Welcome to <strong>Gun Room, LLC</strong>. We specialize in fine collectible firearms,
buying, selling, trading, and appraisals. This website presents our <strong>Fall Catalog 156</strong>
in an easy‑to‑browse format.
</p>
<p class="note">Sioux Falls Gun Show returns January 3rd & 4th at the Denny Sanford Premier Center.</p>
</section>
<section id="terms">
<h2>Sales & Shipping Terms</h2>
<div class="info-box">
<p><strong>Satisfaction Guaranteed:</strong> 3‑day inspection period. Return in same condition for refund.</p>
<p><strong>Lay‑A‑Way:</strong> 1/3 down, 1/3 in 30 days, final 1/3 in 60 days. Lay‑away sales are final.</p>
<p><strong>Shipping:</strong> $50 per gun via U.S. Priority Mail and/or FedEx.</p>
<p><strong>Legal:</strong> Antique guns (pre‑1899) ship to non‑dealers. All others require signed FFL.</p>
<p><strong>Phone Hours:</strong> 8:00 AM – 10:00 PM CST</p>
</div>
</section>
<section id="catalog">
<h2>Catalog Highlights</h2>
<p>This is a sample layout. Full inventory can be expanded section‑by‑section.</p>
<table>
<thead>
<tr>
<th>#</th>
<th>Model</th>
<th>Description</th>
<th>Price / Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Winchester 1873 SRC</td>
<td>.44‑40, 80% overall, light refinish wood</td>
<td class="price">$6,995<br><a class="call-btn" href="tel:16057635090">Call to Purchase</a></td>
</tr>
<tr>
<td>2</td>
<td>Winchester 1876</td>
<td>.40‑60, 28" octagon, Cody letter</td>
<td class="price">$7,995<br><a class="call-btn" href="tel:16057635090">Call to Purchase</a></td>
</tr>
<tr>
<td>35</td>
<td>Winchester 1886 Deluxe Engraved</td>
<td>.45‑70, factory lettered, engraved</td>
<td class="price">$32,500<br><a class="call-btn" href="tel:16057635090">Call to Purchase</a></td>
</tr>
</tbody>
</table>
<p class="note">Contact us for availability and full descriptions of all catalog items.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>
<strong>Gun Room, LLC</strong><br />
105 North 8th Street<br />
Beresford, SD 57004<br />
Phone: (605) 763‑5090
</p>
<p class="note">Guns shown by appointment only.</p>
</section>
</div>
<footer>
<p>© Gun Room, LLC — Buy • Sell • Trade • Appraisals</p>
</footer>
</body>
</html>