:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f6f7f8;
  --text:#0b1220;
  --muted:#4a5568;
  --border:rgba(11,18,32,0.12);

  --brand-green:#1f3a2f;
  --brand-gold:#b8a85e;
  --brand-gold-2:#d1c27a;

  --shadow:0 18px 40px rgba(11,18,32,0.10);
  --shadow-soft:0 10px 24px rgba(11,18,32,0.08);

  --radius:18px;
  --radius-sm:12px;

  /* responsive container */
  --max:1120px;

  /* consistent spacing scale */
  --s1:8px;
  --s2:12px;
  --s3:16px;
  --s4:20px;
  --s5:28px;
  --s6:40px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(100% - 32px, var(--max));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 14px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--s3);
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:var(--s2);
  min-width: 0;
}
.brand-mark{
  width:80px;
  height:80px;
  object-fit:contain;
  border-radius:14px;
  box-shadow:var(--shadow-soft);
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
  min-width:0;
}
.brand-name{
  font-weight:900;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-tagline{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Desktop nav (we hide on mobile) */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link{
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  color:rgba(11,18,32,0.82);
}
.nav-link:hover{
  background:rgba(11,18,32,0.05);
  text-decoration:none;
}
.nav-link.is-active{
  background:rgba(184,168,94,0.18);
  color:var(--text);
}
.nav-cta{
  background:linear-gradient(135deg,var(--brand-green),#0f241b);
  color:#fff;
}
.nav-cta:hover{ opacity:.92; }

/* Mobile menu button (we'll show on small screens) */
.mobile-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
}

/* Mobile drawer */
.mobile-drawer{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-drawer .container{
  padding:10px 0 14px;
}
.mobile-drawer a{
  display:block;
  padding:12px 12px;
  border-radius:12px;
  font-weight:800;
  color:rgba(11,18,32,0.86);
}
.mobile-drawer a:hover{
  background:rgba(11,18,32,0.05);
  text-decoration:none;
}
.mobile-drawer a.primary{
  background:linear-gradient(135deg,var(--brand-green),#0f241b);
  color:#fff;
}

/* Hero */
.hero{
  position:relative;
  padding:54px 0 22px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 400px at 15% 10%, rgba(184,168,94,0.20), transparent 55%),
    radial-gradient(900px 500px at 90% 20%, rgba(31,58,47,0.16), transparent 55%),
    linear-gradient(180deg,#ffffff 0%,#fbfbfc 70%,#ffffff 100%);
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:-30px;
  background-image:url("../img/hero-trade.jpg");
  background-size:cover;
  background-position:center;
  opacity:.14;
  filter:saturate(.9) contrast(1.05);
}

/* Mobile-first: stack */
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:start;
}
.eyebrow{
  display:inline-flex;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--brand-green);
  margin:0 0 10px;
}
h1{
  font-size: clamp(30px, 7vw, 52px);
  line-height:1.08;
  margin:0 0 12px;
  letter-spacing:-0.02em;
}
.lead{
  font-size:16px;
  color:rgba(11,18,32,0.78);
  margin:0 0 16px;
  max-width: 62ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  text-decoration:none !important;
}
.btn-primary{
  background:linear-gradient(135deg,var(--brand-green),#0f241b);
  color:#fff;
  box-shadow:var(--shadow-soft);
}
.btn-primary:hover{ opacity:.95; }
.btn-ghost{
  background:rgba(255,255,255,0.90);
  border-color:var(--border);
  color:var(--text);
}
.btn-ghost:hover{ background:#fff; }

.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
  color:rgba(11,18,32,0.72);
  font-weight:700;
  font-size:13px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  background:rgba(255,255,255,0.75);
  border:1px solid var(--border);
  border-radius:999px;
}
.trust-dot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg,var(--brand-gold),var(--brand-gold-2));
}

.hero-card{
  background:rgba(255,255,255,0.90);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card-inner{ padding:16px; }

/* Sections */
.section{ padding:44px 0; }
.section-alt{
  background:var(--surface-2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head h2{
  margin:0 0 6px;
  font-size:26px;
  letter-spacing:-0.01em;
}
.muted{ color:var(--muted); }
.small{ font-size:13px; }

/* Cards and grids – mobile first */
.grid-3{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top:18px;
}
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.card-icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:14px;
  background:rgba(184,168,94,0.18);
  border:1px solid rgba(184,168,94,0.35);
  color:var(--brand-green);
  font-weight:900;
}
.card h3{ margin:8px 0 8px; font-size:18px; }

.feature-row{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items:center;
  margin-top:18px;
}
.feature-media img{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.bullets{ padding-left:18px; margin:10px 0 0; color:rgba(11,18,32,0.78); }
.bullets li{ margin:6px 0; }

.checklist{ list-style:none; padding:0; margin:12px 0 0; }
.checklist li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color:rgba(11,18,32,0.78);
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0; top:7px;
  width:16px;height:16px;
  border-radius:6px;
  background:linear-gradient(135deg,var(--brand-gold),var(--brand-gold-2));
}

.page-hero{
  padding:38px 0 12px;
  background:
    radial-gradient(900px 280px at 15% 30%, rgba(184,168,94,0.18), transparent 60%),
    radial-gradient(700px 320px at 90% 30%, rgba(31,58,47,0.14), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, #fbfbfc 100%);
  border-bottom:1px solid var(--border);
}
.page-hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 6vw, 44px);
}

.cta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Forms */
.contact-grid{ align-items:start; }
.form{ margin-top:10px; }
.form-row{ display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }
label{ font-weight:900; color:rgba(11,18,32,0.88); font-size:13px; }
input,select,textarea{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  font:inherit;
  background:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color: rgba(31,58,47,0.55);
  box-shadow: 0 0 0 4px rgba(31,58,47,0.10);
}
.form-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }

.divider{ border:none; border-top:1px solid var(--border); margin:14px 0; }
.contact-big a{ font-size:18px; font-weight:900; color:var(--brand-green); }
.contact-image{
  margin-top:12px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  padding:18px 0;
}
.footer-left{ display:flex; align-items:center; gap:12px; }
.footer-mark{
  width:54px;height:54px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid var(--border);
}
.footer-title{ font-weight:900; }
.footer-right{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-link{ color:rgba(11,18,32,0.78); font-weight:800; }
.footer-link:hover{ color:var(--text); }
.footer-bottom{ padding:10px 0 20px; }

/* ===== Desktop enhancements ===== */
@media (min-width: 921px){
  .container{ width:min(100% - 40px, var(--max)); }

  .hero-inner{
    grid-template-columns: 1.25fr 0.75fr;
    gap:22px;
  }

  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-2{ grid-template-columns: repeat(2, 1fr); }

  .feature-row{ grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-media{ order:2; }

  .cta{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .footer-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}

/* ===== Mobile nav behavior ===== */
@media (max-width: 820px){
  .nav{ display:none; }
  .mobile-toggle{ display:inline-flex; }
  .brand-mark{ width:86px; height:86px; }
}
