:root { --orange:#E85D04; --orange-light:#FF7A25; --orange-bg:#FFF4EE; --black:#111111; --dark:#1e1e1e; --grey:#6b6b6b; --light-grey:#f5f5f5; --border:#e8e8e8; --white:#ffffff; }
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'Outfit',sans-serif; color:var(--black); background:var(--white); }
a { color:var(--orange); }
.top-bar { background:var(--orange); padding:9px 48px; display:flex; justify-content:space-between; align-items:center; }
.top-bar a, .top-bar { color:#fff; font-size:13px; text-decoration:none; font-weight:600; }
nav { position:sticky; top:0; z-index:100; background:#fff; border-bottom:1px solid var(--border); padding:0 48px; display:flex; align-items:center; justify-content:space-between; height:68px; }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--black); font-size:28px; font-weight:600; }
.nav-links { display:flex; gap:4px; list-style:none; align-items:center; }
.nav-links a { font-size:14px; font-weight:500; color:var(--dark); text-decoration:none; padding:8px 14px; border-radius:6px; }
.nav-links a:hover { background:var(--light-grey); }
.page { padding:40px 48px 72px; max-width:1140px; margin:0 auto; }
.page h1 { font-size:clamp(28px,4vw,40px); line-height:1.15; margin-bottom:12px; }
.lead { font-size:17px; color:var(--grey); line-height:1.7; margin-bottom:22px; max-width:760px; }
.copy p { font-size:16px; line-height:1.7; color:#333; margin-bottom:16px; max-width:760px; }
.copy h2 { font-size:24px; margin:28px 0 12px; }
.btns { display:flex; flex-wrap:wrap; gap:10px; margin:22px 0 32px; }
.btn-primary { background:var(--orange); color:#fff; padding:10px 22px; border-radius:6px; font-weight:600; font-size:14px; text-decoration:none; }
.btn-outline { background:#fff; color:var(--dark); padding:10px 22px; border-radius:6px; font-weight:600; font-size:14px; text-decoration:none; border:1.5px solid var(--border); }
.grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; margin:24px 0 36px; }
.card { display:block; background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden; text-decoration:none; color:var(--black); box-shadow:0 8px 20px rgba(0,0,0,.06); }
.card img { width:100%; height:160px; object-fit:contain; background:#efefef; }
.card-placeholder { width:100%; height:160px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#ececec 0%,#f7f7f7 100%); color:var(--grey); font-size:13px; font-weight:600; }
.copy ul { margin:0 0 16px 20px; max-width:760px; }
.copy li { font-size:16px; line-height:1.7; color:#333; margin-bottom:6px; }
.general-hire-note { background:var(--orange-bg); border:1px solid #ffdcc9; border-radius:12px; padding:16px 20px; margin:8px 0 28px; max-width:760px; }
.general-hire-note p { margin:0; font-size:16px; line-height:1.65; color:#333; }
.card h3 { font-size:16px; padding:12px 14px 4px; }
.card p { font-size:13px; color:var(--grey); padding:0 14px 16px; }
.area-list { display:flex; flex-wrap:wrap; gap:8px; list-style:none; margin:12px 0 28px; }
.area-list li { background:var(--orange-bg); border-radius:999px; padding:7px 14px; font-size:14px; font-weight:600; }
details { border:1px solid var(--border); border-radius:10px; padding:14px 18px; margin-bottom:10px; }
summary { font-weight:600; cursor:pointer; }
details p { margin-top:10px; color:var(--grey); line-height:1.65; }
footer { background:var(--black); color:#fff; padding:40px 48px; }
.footer-inner { max-width:1140px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:32px; }
footer a { color:#ffb58f; text-decoration:none; }
.footer-col-title { color:var(--orange); font-size:12px; letter-spacing:1px; text-transform:uppercase; margin-bottom:12px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:8px; }
@media (max-width:800px) {
  .top-bar, nav, .page, footer { padding-left:16px; padding-right:16px; }
  .nav-links { display:none; }
  .footer-inner { grid-template-columns:1fr; }
}
