:root{
  --bg:#0b0f14;
  --panel:#111823;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --line:rgba(255,255,255,.08);
  --accent:#c9b37e;
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#0b0f14,#090d12);
  color:var(--text);
  line-height:1.6;
}

.container{
  width:min(1100px,calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  background:#121826;
  border-bottom:1px solid var(--line);
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand-name{
  font-weight:700;
  font-size:1.2rem;
}

.brand-tag{
  font-size:.85rem;
  color:var(--muted);
}

.hero{
  padding:100px 0 80px;
  text-align:center;
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.75)
    ),
    url("https://www.dropbox.com/scl/fi/tnfgrare1ub5ucsfy6676/Photo-06-01-2026-15-43-10.png?rlkey=ayu4b2r59ulzyxxrw15z8art6&raw=1");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1{
  font-size:2.2rem;
  margin-bottom:10px;
}

.lead{
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
}

.section{
  padding:60px 0;
}

.section-alt{
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.grid-3{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
}

.list{
  padding-left:18px;
}

.contact-card{
  background:var(--panel);
  border-radius:var(--radius);
  padding:30px;
  border:1px solid var(--line);
}

.contact-lines a{
  display:block;
  margin:10px 0;
  color:#fff;
  text-decoration:none;
}

.small{
  color:var(--muted);
  font-size:.85rem;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  text-align:center;
}

.footer-small{
  color:var(--muted);
  font-size:.8rem;
}

.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.btn-primary{
  background:var(--accent);
  color:#121212;
}

.btn-call {
  background: #1e7f34;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}

.btn-email {
  background: #555;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* FAQ spacing fix */
.faq {
  padding-top: 60px;
  padding-bottom: 120px;
}

header h1 {
  color: #1f4d5f; /* deep respectful blue */
}

.hero-subtitle {
  color: #EOCE57; /* softer blue-grey */
  font-weight: 400;
  margin-top: 10px;
}



/* Centre the brand text when it wraps on mobile */
.site-header .brand-text h2{
  text-align: center;
  line-height: 1.1;
}



/* Make the header button match the brand tone */
.site-header .btn{
  background: #c6a75e;
  color: #0b0f14;
  font-weight: 600;
  border-radius: 14px;  /* less 'bubble', more premium */
  padding: 10px 16px;
}