/* ===========================================================================
   Excessible — shared stylesheet for service / content pages
   Brand tokens mirror the homepage (index.html). Homepage itself is unchanged.
   =========================================================================== */

:root {
  --green:        #2D4A2A;
  --green-light:  #3a6035;
  --green-dark:   #1e3318;
  --gold:         #B8922A;
  --gold-light:   #d4a832;
  --cream:        #EDE0D4;
  --cream-light:  #f7f2ec;
  --white:        #ffffff;
  --grey:         #6b7280;
  --grey-light:   #f3f4f6;
  --text:         #1a2b17;
  --text-mid:     #374151;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text-mid);
  background: var(--white);
  line-height: 1.65;
}
a { color: var(--green); }
img { max-width: 100%; }
.skip-link { position:absolute; left:-9999px; top:0; background:var(--green); color:#fff; padding:10px 16px; z-index:200; }
.skip-link:focus { left:8px; top:8px; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 36px; width: auto; object-fit: contain; display: block; padding: 12px 0; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid); font-size: .9rem; font-weight: 600;
  padding: 8px 12px; border-radius: 4px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--cream-light); }
.nav-fsp {
  font-size: .78rem; font-weight: 700; color: var(--gold);
  border-left: 1px solid #e5e7eb; padding-left: 14px; margin-left: 6px;
}
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: 4px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:10px 0; }
.hamburger span { width:26px; height:3px; background:var(--green); border-radius:2px; transition:.25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green); color: var(--white); padding: 13px 28px; border-radius: 5px;
  font-weight: 700; font-size: .93rem; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s; display:inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); color:var(--white); }
.btn-outline {
  background: transparent; color: var(--green); padding: 12px 26px; border-radius: 5px;
  font-weight: 700; font-size: .93rem; text-decoration: none; border: 2px solid var(--green);
  cursor: pointer; transition: background .2s, color .2s; display:inline-block;
}
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ===== LAYOUT ===== */
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 5%; }
.breadcrumb { font-size: .8rem; color: var(--grey); padding: 18px 0 0; }
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); text-decoration: underline; }

.page-hero { background: var(--cream-light); border-bottom: 1px solid #ece3d8; padding: 8px 0 44px; }
.page-hero .eyebrow {
  display:inline-block; font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold); background:rgba(184,146,42,.12); padding:5px 12px; border-radius:999px; margin-bottom:14px;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1.18; margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: var(--text-mid); max-width: 680px; }
.hero-ctas { margin-top: 26px; display:flex; gap:14px; flex-wrap:wrap; }

section.block { padding: 52px 0; }
section.block.alt { background: var(--grey-light); }
.block h2 { font-size: 1.55rem; font-weight: 800; color: var(--green); margin-bottom: 18px; }
.block h3 { font-size: 1.1rem; font-weight: 800; color: var(--green); margin: 22px 0 8px; }
.block p { margin-bottom: 14px; }
.block ul { margin: 0 0 14px 20px; }
.block li { margin-bottom: 8px; }

/* cover cards */
.cover-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap:20px; margin-top:8px; }
.cover-card { background:var(--white); border:1px solid #e5e7eb; border-radius:12px; padding:22px 22px 20px; box-shadow:0 4px 18px rgba(0,0,0,.05); }
.cover-card h3 { margin-top:0; }
.cover-card p { font-size:.92rem; color:var(--grey); margin:0; }

/* trust strip */
.trust-strip { display:flex; flex-wrap:wrap; gap:10px 26px; padding:20px 0; border-top:1px solid #eee; border-bottom:1px solid #eee; margin:6px 0 0; }
.trust-strip span { font-size:.86rem; font-weight:600; color:var(--green); }
.trust-strip span::before { content:"✓ "; color:var(--gold); font-weight:900; }

/* FAQ */
.faq details { border:1px solid #e5e7eb; border-radius:8px; margin-bottom:10px; background:var(--white); }
.faq summary { cursor:pointer; padding:14px 18px; font-weight:700; color:var(--green); list-style:none; position:relative; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; position:absolute; right:18px; color:var(--gold); font-weight:900; }
.faq details[open] summary::after { content:"–"; }
.faq details[open] summary { border-bottom:1px solid #eee; }
.faq .faq-body { padding:14px 18px; font-size:.94rem; color:var(--text-mid); }

/* CTA band */
.cta-band { background: var(--green); color:#fff; padding: 48px 5%; text-align:center; }
.cta-band h2 { color:#fff; font-size:1.6rem; font-weight:900; margin-bottom:10px; }
.cta-band p { color:rgba(255,255,255,.85); max-width:560px; margin:0 auto 22px; }
.cta-band .btn-outline { color:#fff; border-color:#fff; }
.cta-band .btn-outline:hover { background:#fff; color:var(--green); }
.cta-band .btn-primary { background:var(--gold); }
.cta-band .btn-primary:hover { background:var(--gold-light); }

/* related links */
.related { display:flex; flex-wrap:wrap; gap:12px; }
.related a { font-size:.9rem; font-weight:700; color:var(--green); text-decoration:none; border:1px solid var(--cream); background:var(--cream-light); padding:9px 16px; border-radius:999px; }
.related a:hover { background:var(--cream); }

/* ===== FOOTER ===== */
footer { background:var(--green-dark); color:rgba(255,255,255,.8); padding:60px 5% 30px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px; max-width:1200px; margin-left:auto; margin-right:auto; }
.footer-brand img { width:auto; height:80px; object-fit:contain; filter:brightness(0) invert(1); }
.footer-tagline { font-size:.85rem; color:rgba(255,255,255,.65); margin:14px 0 16px; font-style:italic; line-height:1.45; }
.footer-fsp { font-size:.78rem; font-weight:700; color:var(--gold); }
.footer-col-title { font-size:.8rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; padding-bottom:8px; border-bottom:2px solid rgba(184,146,42,.3); }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-links a { text-decoration:none; color:rgba(255,255,255,.65); font-size:.85rem; transition:color .2s; }
.footer-links a:hover { color:var(--gold); }
.footer-contact-item { display:flex; gap:9px; align-items:flex-start; margin-bottom:10px; font-size:.83rem; color:rgba(255,255,255,.65); line-height:1.4; }
.footer-contact-item span:first-child { color:var(--gold); font-size:.75rem; font-weight:700; min-width:22px; padding-top:1px; }
.footer-contact-item a { color:inherit; text-decoration:none; }
.footer-contact-item a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; max-width:1200px; margin:0 auto; font-size:.78rem; color:rgba(255,255,255,.55); }
.footer-bottom a { color:rgba(255,255,255,.5); text-decoration:none; }
.footer-bottom a:hover { color:var(--gold); }

/* WhatsApp float */
.wa-float { position:fixed; bottom:22px; right:22px; width:56px; height:56px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 20px rgba(37,211,102,.45); z-index:120; transition:transform .2s; }
.wa-float:hover { transform:scale(1.1); }
.wa-float svg { width:30px; height:30px; fill:#fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hamburger { display:flex; }
  .nav-links {
    display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    align-items:flex-start; background:var(--white); border-bottom:3px solid var(--green);
    box-shadow:0 8px 20px rgba(0,0,0,.1); padding:8px 0;
  }
  .nav-links.open { display:flex; }
  .nav-links li { width:100%; }
  .nav-links a { display:block; padding:10px 20px; width:100%; }
  .nav-fsp { border-left:none; padding:8px 20px; margin:0; }
  .nav-cta { margin:8px 20px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .page-hero h1 { font-size:1.8rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; align-items:stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align:center; }
}
