
:root{
  --bg:#0b0d09;
  --surface:#ffffff;
  --surface2:#f6f7f5;
  --text:#10120D;
  --muted:rgba(16,18,13,.72);
  --line:rgba(16,18,13,.10);
  --olive:#585B2E;
  --sand:#E4DBA9;
  --sand2:#C3BA92;
  --shadow:0 18px 40px rgba(0,0,0,.12);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  /* Use Raleway for a more modern, hip feel */
  font-family:'Raleway', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 15% 0%, rgba(88,91,46,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(228,219,169,.16), transparent 55%),
    #f3f4f2;
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px,92%);margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(243,244,242,.80);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;gap:16px;
  justify-content:space-between;
  padding:12px 0;
}
.brand-logo{
  /* Increase logo size for better visibility */
  height:96px;
  width:auto;
  display:block;
}

/* Brand text next to the logo */
.brand-text{
  display:inline-block;
  margin-left:12px;
  /* Increase brand name size for better visibility */
  font-size:1.8rem;
  font-weight:800;
  color:var(--text);
  white-space:nowrap;
}
.nav{display:flex;gap:16px;align-items:center;font-weight:700;color:rgba(16,18,13,.78)}
.nav a:hover{color:var(--text)}
.call-cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;
  background: linear-gradient(180deg, var(--olive), #3f421f);
  color: #fff;
  font-weight:800;
  box-shadow: 0 10px 22px rgba(88,91,46,.20);
}

.hero{
  /* Maintain padding but also set a background image and overlay for a bold hero section */
  padding:54px 0 24px;
  background-image: linear-gradient(rgba(16,18,13,0.45), rgba(16,18,13,0.45)), url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: var(--radius);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
.eyebrow{
  margin:0 0 10px;
  color:rgba(16,18,13,.68);
  font-weight:700;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(2.1rem, 3.2vw, 3.0rem);
  line-height:1.08;
  letter-spacing:-0.02em;
}
.subhead{margin:0 0 16px;color:var(--muted);max-width:62ch}

.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0 14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn-primary{
  background: linear-gradient(180deg, var(--sand), var(--sand2));
  color: var(--text);
  box-shadow: 0 14px 28px rgba(16,18,13,.10);
}
.btn-primary:hover{transform: translateY(-1px)}
.btn-ghost{
  background: var(--surface);
  border-color: var(--line);
  color: rgba(16,18,13,.88);
}
.btn-ghost:hover{border-color: rgba(16,18,13,.18)}
.full{width:100%}

.trust-row{display:flex;gap:10px;flex-wrap:wrap}
.trust{
  background: var(--surface);
  border:1px solid var(--line);
  padding:10px 12px;border-radius:999px;
  color: rgba(16,18,13,.74);
  font-weight:700;
}

.hero-panel{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  /* Override inherited white text color from hero */
  color: var(--text);
}
.hero-panel h3{margin:0 0 8px}
.muted{color:var(--muted)}
.small{font-size:.92rem}

.info{
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
  margin:12px 0 12px;
  background: var(--surface2);
}
.info-row{
  display:flex;justify-content:space-between;gap:14px;
  padding:12px 12px;
}
.info-row + .info-row{border-top:1px solid var(--line)}
.label{color:rgba(16,18,13,.62);font-weight:700}
.value{font-weight:800;max-width:58%;text-align:right}
.link:hover{text-decoration:underline}

.template{
  border-top:1px solid var(--line);
  padding-top:12px;
}
.template pre{
  margin:10px 0 12px;
  background: var(--surface2);
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px;
  white-space:pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:.92rem;
}

.section{padding:54px 0}
.section-soft{
  background: rgba(255,255,255,.55);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;gap:18px;
  margin-bottom:16px;
}
.section-head h2{margin:0;font-size:2rem}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 20px rgba(16,18,13,.06);
}
.card h3{margin:0 0 6px;font-size:1.05rem}
.card p{margin:0;color:var(--muted)}

.cta-row{
  display:flex;gap:12px;justify-content:center;
  margin-top:18px;flex-wrap:wrap;
}
.cta-row.left{justify-content:flex-start}

.steps{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
}
.step{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.num{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:12px;
  background: rgba(88,91,46,.10);
  border:1px solid rgba(88,91,46,.18);
  color: var(--olive);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0;color:var(--muted)}

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.bullets{margin:14px 0 0;padding-left:18px;color:var(--muted)}
.bullets li{margin:8px 0}

.mini-panel{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin:14px 0 10px;
}
.contact-card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px;
}
.k{color:rgba(16,18,13,.62);font-weight:800;font-size:.92rem;margin-bottom:6px}
.v{font-weight:900}
.v:hover{text-decoration:underline}

.site-footer{padding:22px 0}
.footer-inner{
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.footer-left{display:flex;align-items:center;gap:12px}
.footer-left img{
  height:50px;
  width:auto;
}
.footer-right{display:flex;align-items:center;gap:10px;color:rgba(16,18,13,.74);font-weight:700}
.dot{opacity:.55}

/* Gallery grid styles */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap:14px;
}
.gallery-grid img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(16,18,13,.10);
}

/* Quote form styles */
.quote-form form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.quote-form label{
  font-weight:700;
  color: var(--text);
}
.quote-form input,
.quote-form textarea{
  width:100%;
  padding:10px;
  border:1px solid var(--line);
  border-radius:12px;
  font-size:1rem;
  background: var(--surface);
  color: var(--text);
}
.quote-form input[type="file"]{
  padding:4px;
}
.quote-form button{
  align-self:flex-start;
}

/* FAQ styles */
.faq-item{
  margin-bottom:18px;
}
.faq-item h3{
  margin:0 0 6px;
  font-size:1.2rem;
  font-weight:700;
}
.faq-item p{
  margin:0;
  color: var(--muted);
  line-height:1.5;
}

/* Sticky call bar for mobile */
.sticky-call{
  display:none;
}
@media (max-width: 768px){
  .sticky-call{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background: linear-gradient(180deg, var(--olive), #3f421f);
    color:#fff;
    justify-content:center;
    align-items:center;
    padding:14px;
    font-weight:800;
    z-index:1000;
  }
  .sticky-call a{
    color:#fff;
    text-decoration:none;
    font-size:1.2rem;
  }
}

@media (max-width: 980px){
  /* On mobile screens, stack header elements vertically and align to the left */
  .header-inner{
    flex-direction: column;
    align-items:flex-start;
    gap:8px;
  }
  /* Lay out the navigation links horizontally on small screens.
     Use wrap so items flow onto multiple lines if needed, which keeps
     the header height compact compared to a full vertical stack. */
  .nav{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:flex-start;
    gap:12px;
    font-size:1rem;
  }
  /* Align the call button to the left and add spacing */
  .call-cta{
    align-self:flex-start;
    margin-top:6px;
  }
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns: repeat(2,1fr)}
  .steps{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .brand-logo{height:72px}
  .cards{grid-template-columns:1fr}
}
