/* Pioneer Preservation – clean Western theme */
:root{
  --bg:#0f0f0f; --ink:#f1f1f1; --muted:#b8b8b8;
  --brand:#f7c945; --card:#1a1a1a; --line:#262626;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--ink);line-height:1.6}
h1,h2,h3{font-family:"Playfair Display",Georgia,serif;line-height:1.2;margin:0 0 .6rem}
h1{font-size:clamp(2rem,4.5vw,3.2rem)}
h2{font-size:clamp(1.6rem,3vw,2.2rem)}
h3{font-size:1.2rem}
p{margin:.35rem 0 1rem}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.small{font-size:.9rem}
.muted{color:var(--muted)}
.container{width:min(1100px,92%);margin:0 auto}
.flex-between{display:flex;justify-content:space-between;align-items:center;gap:1rem}

.topbar {
  position: sticky;
  top: 0;
  background: #0f0f0f;
  border-bottom: 1px solid #262626;
  padding: 0.8rem 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f7c945;
  font-weight: 700;
}

.nav a {
  color: #f7c945;
  margin-left: 1rem;
  font-weight: 600;
}

.nav a:hover {
  color: #ffffff;
}


/* Buttons */
.btn{display:inline-block;background:var(--brand);color:#111;padding:.8rem 1.1rem;border-radius:.5rem;font-weight:700;border:0;box-shadow:var(--shadow)}
.btn:hover{filter:brightness(1.05)}
.btn,
.btn:hover {
  color: #000; /* black text, change if needed */
  background-color: #ffcc33; /* your yellow button color */
  border: 1px solid #ffcc33;
}


/* Hero */
.hero{position:relative;padding:8rem 0 5rem;background:linear-gradient(180deg,#121212,#0f0f0f)}
.hero .lead{max-width:60ch}
.hero .cta-row{display:flex;gap:1rem;margin-top:1rem}
.hero .texture{position:absolute;inset:auto 0 0 0;height:140px;background:repeating-linear-gradient(-45deg,rgba(255,255,255,.06),rgba(255,255,255,.06) 3px,transparent 3px,transparent 10px)}

/* Sections */
.section{padding:4rem 0}
.section.alt{background:#141414}
.grid-2{display:grid;grid-template-columns:1fr;gap:1.2rem}
.grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1.2rem}
@media(min-width:820px){.grid-2{grid-template-columns:1.2fr .8fr}}
@media(max-width:720px){.grid-3{grid-template-columns:1fr}}

/* Cards */
.card,.about-card,.contact-card{background:var(--card);padding:1.2rem;border:1px solid var(--line);border-radius:.8rem;box-shadow:var(--shadow)}

/* Checklist */
.checklist{list-style:none;margin:1rem 0 0;padding:0}
.checklist li{margin:.4rem 0;padding-left:1.6rem;position:relative}
.checklist li:before{content:"✓";position:absolute;left:.2rem;color:var(--brand);font-weight:900}

/* Why section images */
.reason-grid .reason img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:.6rem;
  border:1px solid var(--line);
  display:block;
  margin-bottom:.6rem;
}

/* Forms / misc */
.contact-form{display:grid;gap:.8rem}
.contact-card .quote-box{margin-top:1rem;padding:1rem;background:#121212;border:1px dashed var(--brand);border-radius:.5rem}

/* Footer */
.footer{padding:1rem 0;border-top:1px solid var(--line);background:#0e0e0e}
-top:1px solid #262626;background:#0e0e0e}
/* Watermark logo in hero background */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, #121212, #0f0f0f);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: url("Pioneer 4.svg") no-repeat center center;
  background-size: contain;
  opacity: 0.05; /* adjust strength of watermark */
  transform: translate(-50%, -50%);
  pointer-events: none; /* keeps it unclickable */
}
