:root {
  --bg: #15171a;
  --panel: #1e2126;
  --line: #2c3037;
  --text: #e8eaed;
  --muted: #9aa0a8;
  --accent: #f2801d;
  --accent-dark: #c96509;
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

a { color: var(--accent); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(21, 23, 26, 0.95);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 64px; flex-wrap: wrap;
}
.logo { font-weight: 800; font-size: 1.25rem; letter-spacing: .5px; color: var(--text); text-decoration: none; }
.logo span { color: var(--accent); }
nav.main { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
nav.main a { color: var(--text); text-decoration: none; font-size: .95rem; }
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--accent); }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 4px;
  background: var(--accent); color: #111; font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer; font-size: 1rem;
}
.btn:hover { background: var(--accent-dark); }
nav.main a.btn { color: #111; padding: 9px 16px; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--muted); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(21, 23, 26, .68), rgba(21, 23, 26, .68)),
    url("../images/hero-shop-sm.jpg") 55% 62% / cover no-repeat;
}
@media (min-width: 800px) {
  .hero {
    padding: 140px 0 120px;
    background:
      linear-gradient(90deg, rgba(21, 23, 26, .92) 0%, rgba(21, 23, 26, .72) 45%, rgba(21, 23, 26, .3) 100%),
      url("../images/hero-shop.jpg") center 62% / cover no-repeat;
  }
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; margin: 0 0 16px; max-width: 18ch; }
.hero p.lede { color: var(--muted); font-size: 1.15rem; max-width: 56ch; margin: 0 0 28px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Spec strip */
.specs { background: var(--panel); border-bottom: 1px solid var(--line); }
.specs ul {
  list-style: none; margin: 0; padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 8px 32px;
  font-weight: 600; font-size: .95rem;
}
.specs li::before { content: "■ "; color: var(--accent); font-size: .7em; vertical-align: middle; }

/* Sections */
section.block { padding: 56px 0; border-bottom: 1px solid var(--line); }
section.block h2 { margin: 0 0 8px; font-size: 1.7rem; }
section.block > .wrap > p.sub { color: var(--muted); margin: 0 0 28px; max-width: 60ch; }
.page-title { padding: 48px 20px 8px; }
.page-title h1 { margin: 0 0 8px; font-size: 2.2rem; }
.page-title p { color: var(--muted); margin: 0; max-width: 60ch; }

/* Cards / grids */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.single { grid-template-columns: minmax(0, 420px); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.card .body { padding: 18px; }
.card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card .tag { display: inline-block; font-size: .75rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }

/* Placeholder image blocks — swap for real <img> tags */
.ph {
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(45deg, #23272d, #23272d 12px, #1e2126 12px, #1e2126 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; text-align: center; padding: 12px;
}

/* Real photos */
figure.photo { margin: 0; }
figure.photo img, img.thumb {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 35%;
  border-radius: 6px; background: var(--panel);
}
.card img.thumb { border-radius: 0; }
.grid:not(.single) .card img.thumb { aspect-ratio: 16 / 10; }
figure.photo figcaption { color: var(--muted); font-size: .85rem; margin-top: 8px; }

/* Contact map */
.contact-grid { display: grid; gap: 20px; grid-template-columns: minmax(0, 340px) 1fr; align-items: start; }
.contact-grid .map { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* Spec table */
table.spec { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line); }
table.spec th, table.spec td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.spec th { width: 34%; color: var(--muted); font-weight: 600; }
.tbd { color: var(--accent); font-style: italic; }

/* Form */
form.quote { display: grid; gap: 16px; max-width: 640px; }
form.quote .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
form.quote .row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
form.quote label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; }
form.quote input, form.quote select, form.quote textarea {
  font: inherit; padding: 10px 12px; border-radius: 4px;
  border: 1px solid var(--line); background: var(--panel); color: var(--text);
}
form.quote input:focus, form.quote select:focus, form.quote textarea:focus { outline: 2px solid var(--accent); }
form.quote .hint { color: var(--muted); font-weight: 400; font-size: .85rem; }
@media (max-width: 560px) { form.quote .row { grid-template-columns: 1fr; } }

/* CTA band */
.cta { text-align: center; padding: 56px 0; background: var(--panel); }
.cta h2 { margin: 0 0 16px; }

/* Footer */
footer.site { padding: 32px 0; color: var(--muted); font-size: .9rem; }
footer.site .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
