/* ===========================================================
   TalentTree Consultancy — shared stylesheet
   =========================================================== */

:root{
  --forest:#1b4332;
  --forest-dark:#0e2b21;
  --forest-tint:#e8efe9;
  --gold:#c9a24b;
  --gold-dark:#a8813a;
  --cream:#faf8f3;
  --paper:#ffffff;
  --charcoal:#23262b;
  --muted:#6b7280;
  --line:#e4e1d8;
  --shadow: 0 10px 30px rgba(14,43,33,.08);
  --radius: 14px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Fraunces','Georgia',serif;
  color:var(--forest-dark);
  line-height:1.15;
  margin:0 0 .5em;
  font-weight:600;
}
h1{ font-size:clamp(2.1rem,4.5vw,3.4rem); font-weight:500; }
h2{ font-size:clamp(1.6rem,3vw,2.3rem); }
h3{ font-size:1.25rem; }
p{ margin:0 0 1em; color:var(--charcoal); }
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
.container{ max-width:1140px; margin:0 auto; padding:0 24px; }
.eyebrow{
  display:inline-block; text-transform:uppercase; letter-spacing:.14em;
  font-size:.74rem; font-weight:700; color:var(--gold-dark); margin-bottom:.8em;
}
.muted{ color:var(--muted); }
.center{ text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px; border-radius:999px; font-weight:600; font-size:.95rem;
  border:1.5px solid transparent; cursor:pointer; transition:.2s ease;
}
.btn-primary{ background:var(--forest); color:#fff; }
.btn-primary:hover{ background:var(--forest-dark); }
.btn-gold{ background:var(--gold); color:var(--forest-dark); }
.btn-gold:hover{ background:var(--gold-dark); color:#fff; }
.btn-outline{ border-color:var(--forest); color:var(--forest); background:transparent; }
.btn-outline:hover{ background:var(--forest); color:#fff; }
.btn-outline-light{ border-color:rgba(255,255,255,.55); color:#fff; background:transparent; }
.btn-outline-light:hover{ background:rgba(255,255,255,.12); }

/* ---------- Header / Nav ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:var(--cream);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px; max-width:1140px; margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:42px; height:42px; border-radius:50%; background:var(--forest);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.brand-name{ font-family:'Fraunces',serif; font-size:1.15rem; color:var(--forest-dark); font-weight:600; line-height:1.1; }
.brand-name span{ display:block; font-family:'Inter',sans-serif; font-weight:500; font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-dark); margin-top:2px; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-size:.94rem; font-weight:500; color:var(--charcoal); position:relative; }
.nav-links a.active,.nav-links a:hover{ color:var(--forest); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{ display:none; }

@media (max-width:860px){
  .nav-links{
    position:fixed; inset:72px 0 0 0; background:var(--cream);
    flex-direction:column; padding:32px 24px; gap:22px; transform:translateX(100%);
    transition:transform .25s ease; border-top:1px solid var(--line);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{ width:24px; height:2px; background:var(--forest-dark); display:block; }
  .nav .btn-primary{ display:none; }
  .nav-links .btn-primary{ display:inline-flex; margin-top:8px; }
}

/* ---------- Hero ---------- */
.hero{
  background:linear-gradient(180deg,var(--forest) 0%,var(--forest-dark) 100%);
  color:#fff; padding:96px 0 84px; position:relative; overflow:hidden;
}
.hero .container{ position:relative; z-index:2; max-width:760px; }
.hero .eyebrow{ color:var(--gold); }
.hero h1{ color:#fff; }
.hero p.lead{ color:rgba(255,255,255,.86); font-size:1.15rem; max-width:600px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:30px; }
.hero-orb{
  position:absolute; right:-120px; top:-80px; width:420px; height:420px;
  border-radius:50%; background:radial-gradient(circle,rgba(201,162,75,.28),transparent 70%);
}

.page-hero{
  background:linear-gradient(180deg,var(--forest) 0%,var(--forest-dark) 100%);
  color:#fff; padding:76px 0 64px;
}
.page-hero h1{ color:#fff; margin-bottom:.3em; }
.page-hero p{ color:rgba(255,255,255,.85); max-width:620px; font-size:1.05rem; }

/* ---------- Sections ---------- */
section{ padding:80px 0; }
section.tight{ padding:56px 0; }
.section-head{ max-width:640px; margin:0 auto 48px; text-align:center; }
.alt-bg{ background:var(--paper); }

/* ---------- Stat / value strip ---------- */
.strip{
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); margin-top:-56px; position:relative; z-index:3; overflow:hidden;
}
.strip .cell{ padding:28px 24px; text-align:center; border-right:1px solid var(--line); }
.strip .cell:last-child{ border-right:none; }
.strip .cell h3{ color:var(--gold-dark); font-family:'Fraunces',serif; font-size:1.5rem; margin-bottom:.15em; }
.strip .cell p{ margin:0; font-size:.88rem; color:var(--muted); }
@media (max-width:760px){ .strip{ grid-template-columns:1fr; margin-top:24px; } .strip .cell{ border-right:none; border-bottom:1px solid var(--line);} .strip .cell:last-child{ border-bottom:none; } }

/* ---------- Cards ---------- */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:900px){ .grid-3{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .grid-3,.grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px 28px; box-shadow:var(--shadow);
}
.card .icon{
  width:46px; height:46px; border-radius:10px; background:var(--forest-tint);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card h3{ margin-bottom:.4em; }
.card p{ color:var(--muted); font-size:.95rem; margin-bottom:0; }

/* ---------- Badges (industry / skills) ---------- */
.badge-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
@media (max-width:860px){ .badge-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .badge-grid{ grid-template-columns:repeat(2,1fr); } }
.badge{
  background:var(--paper); border:1px solid var(--line); border-radius:12px;
  padding:22px 14px; text-align:center; font-family:'Fraunces',serif; font-weight:600;
  color:var(--forest-dark); font-size:1rem; letter-spacing:.01em;
  transition:.2s ease;
}
.badge:hover{ border-color:var(--gold); box-shadow:var(--shadow); transform:translateY(-2px); }
.badge small{ display:block; font-family:'Inter',sans-serif; font-weight:500; font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-top:6px; }

.tag-cloud{ display:flex; flex-wrap:wrap; gap:10px; }
.tag{
  background:var(--forest-tint); color:var(--forest-dark); font-size:.85rem; font-weight:600;
  padding:9px 16px; border-radius:999px;
}

/* ---------- Process steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; counter-reset:step; }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:8px; }
.step .num{
  width:38px; height:38px; border-radius:50%; background:var(--forest); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:600;
  margin-bottom:14px;
}
.step h3{ font-size:1.05rem; }
.step p{ font-size:.88rem; color:var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:var(--forest-dark); color:#fff; border-radius:20px; padding:52px 44px;
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
}
.cta-banner h2{ color:#fff; margin-bottom:.25em; }
.cta-banner p{ color:rgba(255,255,255,.78); margin:0; }
.cta-banner .actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer.site{ background:var(--forest-dark); color:rgba(255,255,255,.82); padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr; gap:32px; } }
.footer-grid h4{ color:#fff; font-family:'Inter',sans-serif; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; font-weight:700; margin-bottom:16px; }
.footer-grid p, .footer-grid a{ color:rgba(255,255,255,.72); font-size:.92rem; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-grid a:hover{ color:var(--gold); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand .brand-name{ color:#fff; }
.footer-brand .brand-name span{ color:var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:24px; font-size:.82rem; color:rgba(255,255,255,.55); }

/* ---------- Forms ---------- */
form.contact-form{ display:grid; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.contact-form label{ font-size:.85rem; font-weight:600; color:var(--forest-dark); display:block; margin-bottom:6px; }
.contact-form input, .contact-form select, .contact-form textarea{
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:10px;
  font-family:inherit; font-size:.95rem; background:var(--paper); color:var(--charcoal);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{ outline:none; border-color:var(--forest); }
.contact-form textarea{ resize:vertical; min-height:130px; }

.contact-info-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:34px; box-shadow:var(--shadow); }
.contact-info-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:22px; }
.contact-info-row:last-child{ margin-bottom:0; }
.contact-info-row .icon{ width:40px; height:40px; border-radius:10px; background:var(--forest-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-row h4{ margin:0 0 2px; font-family:'Inter',sans-serif; font-size:.88rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); }
.contact-info-row p{ margin:0; font-weight:600; color:var(--forest-dark); }
.contact-info-row a{ font-weight:600; color:var(--forest-dark); }
.contact-info-row a:hover{ color:var(--gold-dark); }

.map-wrap{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; }

.note{ font-size:.85rem; color:var(--muted); background:var(--forest-tint); border-radius:10px; padding:14px 18px; }
