/* Remove blue tap highlight on mobile */
* { -webkit-tap-highlight-color: transparent; outline: none; }
/* E2E Technocrats — Stylesheet
 * Edit colours, fonts and layout here.
 * CSS variables in :root are the easiest things to change.
 */

/* ══════════════════════════════════════════
   FONT THEME SYSTEM — swap body class to preview
   ══════════════════════════════════════════ */
/* Fixed font: Playfair Display + DM Sans */
:root {
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}
body { --serif: 'Playfair Display', Georgia, serif; --sans: 'DM Sans', sans-serif; }

:root {
  --forest:       #1B4332;
  --forest-mid:   #2D6A4F;
  --forest-light: #40916C;
  --leaf:         #52B788;
  --amber:        #C8940F;
  --amber-light:  #E9C46A;
  --parchment:    #F8F5F0;
  --parchment-dark: #EDE8E0;
  --charcoal:     #2C3E2D;
  --muted:        #5A6B5B;
  --white:        #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.7;
}

/* topo bg */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-radial-gradient(ellipse at 30% 40%, transparent 0, transparent 60px, rgba(45,106,79,0.04) 60px, rgba(45,106,79,0.04) 61px),
    repeating-radial-gradient(ellipse at 70% 60%, transparent 0, transparent 90px, rgba(45,106,79,0.03) 90px, rgba(45,106,79,0.03) 91px);
  pointer-events: none;
  z-index: 0;
}

/* font-switcher removed */

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 80px;
  background: rgba(248,245,240,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,67,50,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(27,67,50,0.1); }

.nav-logo { display: flex; flex-direction: column; gap: 2px; cursor: pointer; }
.nav-logo-main {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--forest); }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 26px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--forest-mid); }

/* ── PAGES ── */
.page { display: none; min-height: 0; padding-top: 80px; position: relative; z-index: 1; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 56px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(27,67,50,0.07);
  pointer-events: none;
}

/* COMPANY NAME — hero */
.hero-company-name {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--forest-mid);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  opacity: 0.85;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tagline::before { content: ''; width: 32px; height: 1px; background: var(--amber); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--forest);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--forest-mid); }

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; align-items: center; gap: 24px; }

.btn-primary {
  padding: 16px 36px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }

.btn-secondary {
  font-size: 14px;
  font-weight: 400;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.btn-secondary:hover { gap: 12px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem { width: 440px; height: 440px; }
.hero-emblem svg { width: 100%; height: 100%; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 4px;
  padding: 22px 26px;
}
.stat-number {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 7px;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
.section { padding: 110px 56px; position: relative; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--amber); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin-top: 18px;
}

/* ── CLIENTS STRIP ── */
.clients-strip {
  background: var(--forest);
  padding: 36px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}
.clients-strip-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  min-width: 120px;
}
.clients-scroll {
  display: flex;
  gap: 0;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-scroll-track {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  will-change: transform;
}
.client-chip {
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 8px 28px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  transition: color 0.2s;
}
.client-chip:hover { color: rgba(255,255,255,0.9); }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(27,67,50,0.08);
}
.why-card { background: var(--parchment); padding: 52px 44px; transition: background 0.25s; }
.why-card:hover { background: var(--white); }
.why-icon { width: 48px; height: 48px; margin-bottom: 26px; color: var(--forest-light); }
.why-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--forest); margin-bottom: 14px; }
.why-desc { font-size: 15px; font-weight: 400; line-height: 1.8; color: var(--muted); }

/* ── SERVICES ── */
.services-layout { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.services-nav { position: sticky; top: 108px; }
/* service-tab rules moved into .services-nav block above */
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-panel h3 { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--forest); margin-bottom: 22px; }
.service-panel > p { font-size: 16px; font-weight: 400; line-height: 1.85; color: var(--muted); margin-bottom: 36px; }

/* ── SERVICE NAV — dark green sidebar ── */
.services-nav {
  position: sticky;
  top: 108px;
  background: var(--forest);
  border-radius: 8px;
  padding: 8px 0;
}
.service-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.service-tab:last-child { border-bottom: none; }
.service-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }
.service-tab.active { color: var(--white); font-weight: 500; background: rgba(255,255,255,0.08); }
.tab-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.service-tab.active .tab-dot { background: var(--amber-light); transform: scale(1.5); }
.service-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-item {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.08);
  border-left: 3px solid var(--forest-light);
  border-radius: 0 4px 4px 0;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.service-subsection { margin-top: 36px; }
.service-subsection h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.about-text p { font-size: 16px; font-weight: 400; line-height: 1.9; color: var(--muted); margin-bottom: 22px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 52px; }
.pillar { border-top: 2px solid var(--forest-light); padding-top: 22px; }
.pillar-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--forest); margin-bottom: 10px; }
.pillar-text { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--muted); }

.about-visual { position: relative; }
.cert-badge { background: var(--forest); color: var(--white); border-radius: 4px; padding: 36px; margin-bottom: 20px; }
.cert-badge-title { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-bottom: 8px; }
.cert-badge-sub { font-size: 13px; font-weight: 400; opacity: 0.65; letter-spacing: 0.06em; }
.collab-box { background: var(--white); border: 1px solid rgba(27,67,50,0.1); border-radius: 4px; padding: 28px 32px; }
.collab-label { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.collab-name { font-size: 15px; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; line-height: 1.5; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-card {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 320px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team-initials-large {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.team-photo-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-photo-topo {
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(ellipse at 40% 50%, transparent 0, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px),
    repeating-radial-gradient(ellipse at 70% 30%, transparent 0, transparent 50px, rgba(255,255,255,0.025) 50px, rgba(255,255,255,0.025) 51px);
}
.team-body { padding: 32px 36px; }
.team-name { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.team-role { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.team-bio { font-size: 14px; font-weight: 400; line-height: 1.8; color: var(--muted); }

/* ── ACCREDITATIONS — redesigned ── */
.accred-hero {
  background: var(--forest);
  border-radius: 8px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.accred-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(ellipse at 20% 50%, transparent 0, transparent 80px, rgba(255,255,255,0.03) 80px, rgba(255,255,255,0.03) 81px),
    repeating-radial-gradient(ellipse at 80% 30%, transparent 0, transparent 120px, rgba(255,255,255,0.025) 120px, rgba(255,255,255,0.025) 121px);
}
.accred-cert {
  position: relative;
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}
.accred-cert:last-child { border-right: none; }
.accred-cert-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 600;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 32px;
}
.accred-cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(233,196,106,0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.accred-cert-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.accred-cert-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.accred-cert-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  border-top: 1px solid rgba(233,196,106,0.3);
  padding-top: 16px;
}

.accred-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.accred-why-left {
  padding: 56px;
  border-right: 1px solid rgba(27,67,50,0.08);
}
.accred-why-left h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 18px;
  line-height: 1.3;
}
.accred-why-left p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
}
.accred-why-right { padding: 56px; display: flex; flex-direction: column; gap: 20px; background: var(--parchment); }
.accred-proof {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.accred-proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest-light);
  flex-shrink: 0;
  margin-top: 7px;
}
.accred-proof-title { font-size: 15px; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
.accred-proof-desc { font-size: 13px; font-weight: 400; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 6px;
  padding: 48px 52px 40px;
  display: flex;
  flex-direction: column;
}
.contact-form .btn-primary { margin-top: auto; }
.contact-form h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 9px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  background: var(--parchment);
  border: 1px solid rgba(27,67,50,0.14);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--forest-light);
  background: var(--white);
}
textarea { resize: vertical; min-height: 160px; flex: 1; }

/* ── CONTACT INFO — highlighted ── */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.contact-info-panel .response-card { margin-top: auto; }

.contact-info-header {
  margin-bottom: 32px;
}
.contact-info-header h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.contact-info-header p {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

.office-card {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 6px;
  padding: 32px 36px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.office-card:hover { box-shadow: 0 4px 20px rgba(27,67,50,0.08); }

.office-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.office-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.office-hq-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(27,67,50,0.08);
  color: var(--forest);
  padding: 4px 10px;
  border-radius: 20px;
}
.office-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 10px;
}
.office-addr {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.office-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.office-map-link:hover { color: var(--forest); }
.office-map-link svg { width: 14px; height: 14px; }

.office-divider { height: 1px; background: rgba(27,67,50,0.07); margin-bottom: 18px; }

.office-contacts { display: flex; flex-direction: column; gap: 8px; }
.office-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.office-contact-item:hover { color: var(--forest); }
.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(27,67,50,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest-light);
}
.contact-icon svg { width: 15px; height: 15px; }

.response-card {
  background: var(--forest);
  border-radius: 6px;
  padding: 32px 36px;
}
.response-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.response-card-val {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.response-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── FOOTER — highlighted ── */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 72px 56px 44px;
  position: relative;
  z-index: 1;
}

/* Footer company name — bigger, more prominent */
.footer-brand {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand-left {}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.footer-brand-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--amber-light);
}
.footer-brand-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-light);
  letter-spacing: 0.06em;
  border: 1px solid rgba(233,196,106,0.35);
  padding: 6px 16px;
  border-radius: 2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 340px;
  margin-top: 0;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

/* Footer contact column — highlighted */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-light);
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-contact-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-contact-text:hover { color: var(--white); }
.footer-contact-text small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.footer-map-link:hover { opacity: 0.8; }
.footer-map-link svg { width: 12px; height: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.4); }

/* ── DARK SECTION ── */
.dark-section { background: var(--forest); color: var(--white); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255,255,255,0.55); }
.dark-section .section-eyebrow { color: var(--amber-light); }
.dark-section .section-eyebrow::before { background: var(--amber-light); }



/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up  { animation: fadeUp 0.6s ease forwards; }
.fade-up-2 { animation-delay:0.1s; opacity:0; animation-fill-mode:forwards; animation-name:fadeUp; animation-duration:0.6s; animation-timing-function:ease; }
.fade-up-3 { animation-delay:0.2s; opacity:0; animation-fill-mode:forwards; animation-name:fadeUp; animation-duration:0.6s; animation-timing-function:ease; }
.fade-up-4 { animation-delay:0.3s; opacity:0; animation-fill-mode:forwards; animation-name:fadeUp; animation-duration:0.6s; animation-timing-function:ease; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-logo-main { font-size: 22px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-visual { display: none; }
  .section { padding: 80px 24px; }
  .services-layout { grid-template-columns: 1fr; }
  .services-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .service-tab { border: 1px solid rgba(27,67,50,0.15); border-radius: 2px; padding: 10px 18px; }
  .about-grid, .contact-grid, .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .accred-hero { grid-template-columns: 1fr; }
  .accred-cert { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .accred-cert:last-child { border-bottom: none; }
  .accred-why { grid-template-columns: 1fr; }
  .accred-why-left { border-right: none; border-bottom: 1px solid rgba(27,67,50,0.08); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .about-pillars { grid-template-columns: 1fr; }
  .service-items { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .font-switcher { display: none !important; /* removed */ }  .font-switcher-hidden { bottom: 12px; right: 12px; }
}

.success-msg {
  display: none;
  background: rgba(27,67,50,0.08);
  border: 1px solid var(--forest-light);
  border-radius: 4px;
  padding: 16px 22px;
  font-size: 15px;
  color: var(--forest);
  margin-top: 18px;
}
select option { background: var(--white); }


/* ── CLIENT LOGO STYLES ── */
/* ── CLIENT LOGO STYLES ── */
.client-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 16px; flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.client-chip-logo {
  width: 90px; height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255,255,255,0.92);
  border-radius: 3px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.client-chip:hover .client-chip-logo { opacity: 1; }

.client-block {
  background: rgba(255,255,255,0.04);
  padding: 28px 16px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
}
.client-block:hover { background: rgba(255,255,255,0.09); }

.client-logo-img {
  width: 130px; height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255,255,255,0.90);
  border-radius: 4px;
  padding: 6px;
  box-sizing: border-box;
  opacity: 0.88;
  transition: opacity 0.2s, transform 0.2s;
}
.client-block:hover .client-logo-img {
  opacity: 1;
  transform: scale(1.04);
}

.client-logo-name {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-align: center; letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Clients grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════════
   MOBILE & TABLET OPTIMISATION
══════════════════════════════════════════ */

/* Touch targets */
button, a, .service-tab, .nav-links a, .font-btn {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Fluid touch selection */
::selection { background: rgba(27,67,50,0.15); color: var(--charcoal); }
::-moz-selection { background: rgba(27,67,50,0.15); color: var(--charcoal); }

/* Client logo grid mobile */
@media (max-width: 768px) {
  .client-block { padding: 20px 12px; }
  .client-logo-img { max-height: 44px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-strip { padding: 24px 20px; gap: 16px; }
  .clients-strip-label { min-width: 70px; font-size: 9px; }

  /* Hero */
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero-content { padding: 40px 20px 32px; }
  h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero-desc { font-size: 15px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-card { padding: 20px 12px 0; }
  .stat-number { font-size: 36px; }

  /* Nav */
  nav { padding: 0 16px; height: 60px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.1em; }
  .nav-cta { padding: 8px 16px; font-size: 9px; }
  .nav-logo-main { font-size: 17px; }

  /* Sections */
  .section { padding: 56px 20px; }
  .section-title { font-size: clamp(28px, 7vw, 44px); }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 1px; }
  .why-card { padding: 36px 24px; }

  /* Services */
  .services-layout { grid-template-columns: 1fr; }
  .services-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; position: static; }
  .service-tab { border: 1px solid var(--rule); padding: 8px 16px; font-size: 12px; border-radius: 20px; }
  .service-tab.active { background: var(--forest); color: #fff; border-color: var(--forest); }
  .tab-dot { display: none; }
  .service-panel.active { padding: 0; }
  .service-items { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Accreditations */
  .accred-hero { grid-template-columns: 1fr; }
  .accred-cert { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .accred-why { grid-template-columns: 1fr; }
  .accred-why-left { border-right: none; border-bottom: 1px solid var(--rule); }

  /* Footer */
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 20px 32px; }
  .footer-brand-name { font-size: 28px; }

  /* Downloads */
  .dlcard-top { flex-direction: column; padding: 32px 24px; }
  .dlcard-bot { padding: 24px; flex-direction: column; align-items: flex-start; }

  /* Dark section service cards */
  .dark-section > div > div:last-child { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .dark-section > div > div:last-child { grid-template-columns: 1fr; }
  .nav-links { gap: 12px; }
  .nav-cta { display: none; }
  h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  nav { padding: 0 32px; }
  .section { padding: 72px 40px; }
  .hero-content { padding: 80px 40px 60px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 40px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .accred-hero { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}