/* ============================================================
   ROOT VARIABLES
   Centralised design tokens used throughout the site.
   Change colours, radius, or shadows here once.
   ============================================================ */
:root{
  --bg:#0b0e12;
  --panel:#10151c;
  --panel2:#0f141b;
  --text:#eef2f7;
  --muted:#aeb8c6;
  --line:#202938;

  --gold:#d8b86a;
  --gold2:#b8933f;

  --danger:#ff4d4d;
  --ok:#35d07f;

  --shadow:0 18px 45px rgba(0,0,0,.45);
  --r:16px;
}

/* ============================================================
   RESET
   Remove browser inconsistencies.
   ============================================================ */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
img{max-width:100%;display:block}

/* All links are gold by default */
a{
  color:var(--gold);
  text-decoration:none;
}
a:hover{
  color:var(--gold2);
  text-decoration:underline;
}

/* ============================================================
   BASE TYPOGRAPHY & BACKGROUND
   ============================================================ */
body{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(216,184,106,.14), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(216,184,106,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.45;
}

/* ============================================================
   LAYOUT WRAPPERS
   ============================================================ */
.wrap{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
}

main{min-height:60vh}

/* ============================================================
   HEADER
   Sticky navigation and CTA container.
   ============================================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#000;
  border-bottom:1px solid rgba(216,184,106,.15);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

/* Brand / logo */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{height:72px}
.brand-text{display:flex;flex-direction:column}
.brand-name{font-size:1.5rem;font-weight:800}
.brand-tagline{
  font-size:.75rem;
  letter-spacing:.15em;
  opacity:.8;
}

/* Navigation */
.nav{
  display:flex;
  gap:18px;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{
  background:rgba(255,255,255,.05);
}

/* Header action buttons */
.header-actions{
  display:flex;
  gap:10px;
}
.cta{
  padding:10px 16px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#12141a;
  font-weight:700;
  white-space:nowrap;
}

/* ============================================================
   HERO SECTION
   Homepage headline + image card.
   ============================================================ */
.hero{padding:56px 0 28px}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:start;
}

h1{
  font-size:44px;
  margin:0 0 10px;
}

.lead{
  color:var(--muted);
  font-size:18px;
  margin-bottom:16px;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:18px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#12141a;
  font-weight:700;
}
.btn.ghost{
  background:rgba(255,255,255,.04);
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
}

/* ============================================================
   TRUST STRAPLINES (SOLID / SHARP / CLEAN)
   ============================================================ */
.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.trust-item{
  padding:14px;
  border-radius:var(--r);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.trust-title{
  font-size:1.05rem;
  font-weight:800;
  margin-bottom:4px;
}
.trust-text{
  color:var(--muted);
  font-size:14px;
}

/* ============================================================
   CORE GRIDS (CRITICAL)
   These power index.php, jobs.php, admin pages.
   ============================================================ */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.job-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:18px;
}

/* ============================================================
   CARDS (JOB LISTINGS)
   ============================================================ */
.card{
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  transition:.15s ease;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(216,184,106,.35);
}

.card-img{
  height:210px;
  overflow:hidden;
}
.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-body{padding:14px}

/* ============================================================
   PANELS
   Used across contact, charity, job detail.
   ============================================================ */
.panel{
  background:rgba(16,21,28,.85);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.panel.soft{background:rgba(255,255,255,.03)}

.panel-title{
  font-weight:800;
  margin-bottom:10px;
}

/* ============================================================
   FORMS
   Contact page styling.
   ============================================================ */
.form{
  display:grid;
  gap:16px;
}

label{
  display:grid;
  gap:6px;
  font-size:14px;
}

input,textarea{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
  color:var(--text);
  font-size:15px;
}

textarea{min-height:140px}

button.btn{
  font-size:16px;
  padding:14px 22px;
}

/* ============================================================
   JOB GALLERY THUMBNAILS
   ============================================================ */
.gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.shot{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer;
}
.shot img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.2s ease;
}
.shot:hover img{transform:scale(1.03)}

/* ============================================================
   LIGHTBOX OVERLAY
   Full-screen image viewer.
   ============================================================ */
.lightbox-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lightbox-overlay.open{display:flex}

.lightbox-content{
  position:relative;
  max-width:92%;
  max-height:92%;
}
.lightbox-content img{
  max-width:100%;
  max-height:100%;
  border-radius:16px;
}
.lightbox-close{
  position:absolute;
  top:-16px;
  right:-16px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#000;
  color:#fff;
  font-size:24px;
  border:0;
  cursor:pointer;
}

/* ============================================================
   CHARITY PAGE
   Totals panel + video panel.
   ============================================================ */
.charity-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.charity-video{
  background:rgba(16,21,28,.85);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}
.charity-video iframe{
  width:100%;
  aspect-ratio:16/9;
  border-radius:12px;
  border:0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.18);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:16px;
}

.footer-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-btn{
  padding:14px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#12141a;
  font-weight:700;
  text-align:center;
}

.footer-bottom{
  text-align:center;
  margin-top:16px;
  font-size:14px;
  color:var(--muted);
}

/* ============================================================
   COOKIE
   ============================================================ */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-modal {
  background: #0f1316;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 420px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.cookie-modal h3 {
  margin: 0 0 10px;
}

.cookie-modal p {
  margin: 0 0 18px;
  color: #cbd5e1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* MOBILE HEADER BUTTONS – FORCE 3 ACROSS (PORTRAIT + LANDSCAPE) */
@media (max-width: 900px) {

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .header-actions .cta {
    width: 100%;
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
    white-space: nowrap;
  }
}


/* ============================================================
   CUSTOMER REVIEWS
   Force single-column layout
   ============================================================ */
.creviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

