/* =====================================================================
   PJEM CORPORATE WEBSITE — STYLE SYSTEM
   =====================================================================
   Design direction: a Malaysian human-capital & TVET consultancy.
   The visual language borrows from technical / programme documentation
   — structured, numbered, drawn with intent — rather than a soft
   "education" template. Signature element: the Capability Pathway,
   a connected step-diagram used on the homepage impact section.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  /* ---- Colour tokens ---- */
  --pjem-ink:        #10192B;  /* primary text / darkest surface */
  --pjem-navy:        #14304D; /* secondary dark surface, panels */
  --pjem-navy-light:  #1E4568; /* hover state for navy surfaces */
  --pjem-gold:        #C08B2C; /* primary accent / CTA */
  --pjem-gold-light:  #E4B65A; /* accent hover / highlight */
  --pjem-paper:       #F5F6F4; /* page background */
  --pjem-paper-alt:   #ECEEEA; /* alternating section background */
  --pjem-white:       #FFFFFF;
  --pjem-slate:       #55606E; /* secondary / body text on light */
  --pjem-slate-light: #8993A1; /* tertiary text, captions */
  --pjem-line:        #DDE1E6; /* hairline borders on light */
  --pjem-line-dark:   rgba(255,255,255,0.14); /* hairline borders on dark */

  /* ---- Type tokens ---- */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* ---- Layout tokens ---- */
  --container-width: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-md: 0 12px 32px -12px rgba(16, 25, 43, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(16, 25, 43, 0.28);
  --transition: 200ms ease;
}

/* ---------------------------------------------------------------
   RESET
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pjem-ink);
  background: var(--pjem-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--pjem-slate); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--pjem-gold);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--alt { background: var(--pjem-paper-alt); }
.section--dark { background: var(--pjem-ink); color: var(--pjem-white); }
.section--dark p { color: rgba(255,255,255,0.68); }
.section--dark h2, .section--dark h3 { color: var(--pjem-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pjem-gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--pjem-gold);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 38px); }

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pjem-gold); color: var(--pjem-ink); }
.btn-primary:hover { background: var(--pjem-gold-light); }
.btn-outline { background: transparent; border-color: var(--pjem-line); color: var(--pjem-ink); }
.btn-outline:hover { border-color: var(--pjem-ink); }
.btn-outline-light { background: transparent; border-color: var(--pjem-line-dark); color: var(--pjem-white); }
.btn-outline-light:hover { border-color: var(--pjem-white); }
.btn-whatsapp { background: #1E4A3C; color: var(--pjem-white); }
.btn-whatsapp:hover { background: #24594A; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------------------------------------------------------------
   HEADER / NAV
   --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 246, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pjem-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--pjem-ink);
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--pjem-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pjem-gold);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--pjem-slate-light);
  letter-spacing: 0.02em;
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--pjem-slate);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--pjem-ink); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--pjem-gold);
}
.header-ctas { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--pjem-ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 22px; height: 2px;
  background: var(--pjem-ink);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--pjem-ink);
  color: var(--pjem-white);
  overflow: hidden;
  padding: 130px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(192,139,44,0.22), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pjem-gold-light);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero__eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--pjem-gold-light); }
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--pjem-gold-light); }
.hero__lede {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__tags span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  padding: 7px 12px;
  border: 1px solid var(--pjem-line-dark);
  border-radius: 100px;
  color: rgba(255,255,255,0.72);
}

.hero__panel {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--pjem-line-dark);
  border-radius: var(--radius-md);
  padding: 30px;
}
.hero__panel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pjem-slate-light);
  margin-bottom: 18px;
}
.hero__panel-list { display: flex; flex-direction: column; gap: 14px; }
.hero__panel-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pjem-line-dark);
}
.hero__panel-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero__panel-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pjem-gold-light);
  width: 24px;
  flex-shrink: 0;
}
.hero__panel-item strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.hero__panel-item span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------------------------------------------------------------
   ABOUT / INTRO
   --------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--pjem-line);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--pjem-navy), var(--pjem-ink));
  position: relative;
}
.about-figure__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  padding: 24px;
}
.about-copy p { font-size: 16px; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-values div {
  border-top: 2px solid var(--pjem-gold);
  padding-top: 14px;
}
.about-values h4 { font-size: 15px; margin-bottom: 6px; }
.about-values p { font-size: 13.5px; margin: 0; }

/* ---------------------------------------------------------------
   SERVICES
   --------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pjem-line);
  border: 1px solid var(--pjem-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.service-card {
  background: var(--pjem-white);
  padding: 34px 28px;
  position: relative;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.service-card:hover { border-left-color: var(--pjem-gold); background: #FDFBF6; }
.service-card__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pjem-gold);
  margin-bottom: 18px;
  display: block;
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------------------------------------------------------------
   TEAM / BOARD OF DIRECTORS
   --------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card { text-align: left; }
.team-card__photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--pjem-navy), var(--pjem-ink));
  border: 1px solid var(--pjem-line);
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 16px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
}
.team-card h4 { font-size: 15.5px; margin-bottom: 2px; }
.team-card__title {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--pjem-gold);
  margin-bottom: 10px;
}
.team-card p { font-size: 13.5px; margin: 0; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   WHY PARTNER
   --------------------------------------------------------------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.reason {
  padding: 24px 0 0;
  border-top: 1px solid var(--pjem-line-dark);
}
.reason h4 { font-size: 16px; margin-bottom: 8px; color: var(--pjem-white); }
.reason p { font-size: 13.5px; margin: 0; }

/* ---------------------------------------------------------------
   CAPABILITY PATHWAY (signature element)
   --------------------------------------------------------------- */
.pathway {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 24px;
}
.pathway::before {
  content: "";
  position: absolute;
  top: 21px; left: 0; right: 0;
  height: 1px;
  background: var(--pjem-line);
  z-index: 0;
}
.pathway__progress {
  position: absolute;
  top: 21px; left: 0;
  height: 1px;
  background: var(--pjem-gold);
  width: 0%;
  z-index: 1;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.pathway__step {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.pathway__node {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pjem-white);
  border: 1px solid var(--pjem-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pjem-slate);
  margin-bottom: 16px;
  transition: border-color .5s ease, color .5s ease, background .5s ease;
}
.pathway__step.is-active .pathway__node {
  background: var(--pjem-ink);
  border-color: var(--pjem-gold);
  color: var(--pjem-gold-light);
}
.pathway__step h4 { font-size: 14.5px; margin-bottom: 4px; padding-right: 12px; }
.pathway__step p { font-size: 12.5px; margin: 0; padding-right: 16px; }

@media (max-width: 900px) {
  .pathway { flex-direction: column; gap: 22px; }
  .pathway::before, .pathway__progress { display: none; }
  .pathway__step { flex-direction: row; align-items: flex-start; gap: 16px; }
  .pathway__node { margin-bottom: 0; flex-shrink: 0; }
}

/* ---------------------------------------------------------------
   UPDATES / SOCIAL
   --------------------------------------------------------------- */
.updates-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.updates-tab {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border: 1px solid var(--pjem-line);
  border-radius: 100px;
  background: var(--pjem-white);
  color: var(--pjem-slate);
}
.updates-tab.is-active { background: var(--pjem-ink); color: var(--pjem-white); border-color: var(--pjem-ink); }
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.update-card {
  background: var(--pjem-white);
  border: 1px solid var(--pjem-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.update-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--pjem-paper-alt), var(--pjem-line));
  display: flex; align-items: center; justify-content: center;
  color: var(--pjem-slate-light);
  font-family: var(--font-mono);
  font-size: 12px;
}
.update-card__body { padding: 18px 20px 22px; }
.update-card__platform {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pjem-gold);
  margin-bottom: 8px;
  display: block;
}
.update-card p { font-size: 14px; margin-bottom: 0; }
.update-fallback {
  border: 1px dashed var(--pjem-line);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  color: var(--pjem-slate);
}

/* ---------------------------------------------------------------
   ENQUIRY FORM
   --------------------------------------------------------------- */
.enquiry-panel {
  background: var(--pjem-ink);
  border-radius: var(--radius-md);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  color: var(--pjem-white);
}
.enquiry-panel__intro p { color: rgba(255,255,255,0.68); }
.enquiry-panel__intro ul { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.enquiry-panel__intro li { font-size: 14px; color: rgba(255,255,255,0.78); padding-left: 20px; position: relative; }
.enquiry-panel__intro li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px; background: var(--pjem-gold);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--pjem-line-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--pjem-white);
  transition: border-color var(--transition), background var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--pjem-gold);
  background: rgba(255,255,255,0.09);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E4B65A' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-field select option { color: #10192B; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
.form-msg { font-size: 13.5px; }
.form-msg.is-success { color: #7FD8A9; }
.form-msg.is-error { color: #F19A9A; }

/* ---------------------------------------------------------------
   CONTACT BLOCK
   --------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--pjem-paper-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--pjem-ink);
}
.contact-list strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: 14px; color: var(--pjem-slate); }
.map-embed {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  border: 1px solid var(--pjem-line);
  overflow: hidden;
  background: var(--pjem-paper-alt);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pjem-slate-light);
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-align: center; padding: 20px;
}

/* ---------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------- */
.cta-band {
  background: var(--pjem-gold);
  color: var(--pjem-ink);
  border-radius: var(--radius-md);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h3 { font-size: 24px; margin-bottom: 6px; }
.cta-band p { color: rgba(16,25,43,0.72); margin: 0; }
.cta-band .btn-primary { background: var(--pjem-ink); color: var(--pjem-white); }
.cta-band .btn-primary:hover { background: var(--pjem-navy); }

/* ---------------------------------------------------------------
   PAGE HEADER (interior pages)
   --------------------------------------------------------------- */
.page-header {
  background: var(--pjem-ink);
  color: var(--pjem-white);
  padding: 76px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.page-header__inner { position: relative; max-width: 720px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.page-header h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.68); font-size: 16px; margin: 0; max-width: 560px; }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--pjem-ink); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--pjem-line-dark);
}
.footer-brand .brand { color: var(--pjem-white); margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--pjem-line-dark);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--pjem-gold); background: rgba(192,139,44,0.12); }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--pjem-white); }
.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

/* ---------------------------------------------------------------
   FLOATING WHATSAPP BUTTON
   --------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1E4A3C;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---------------------------------------------------------------
   PRIVACY / LEGAL CONTENT
   --------------------------------------------------------------- */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 21px; margin-top: 40px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--pjem-slate); }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal-content ul li { margin-bottom: 6px; }
.legal-updated {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--pjem-slate-light);
  margin-bottom: 40px;
}

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-panel { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { order: -1; }
  .main-nav ul, .header-ctas .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services-grid, .reasons-grid, .updates-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .enquiry-panel { padding: 28px; }
  .page-header { padding: 60px 0 44px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
