
/* ============================================================
   NORTHBRIDGE GLOBAL LLP â Website Stylesheet
   Palette:  forest green + brass gold + warm cream
   Type:     Fraunces (display) + Manrope (body)
   ============================================================ */

/* ---------- 0. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --green:          #1E4D2E;
  --green-mid:      #2A6640;
  --green-deep:     #133520;
  --green-dark:     #0E2918;
  --gold:           #B08C4A;
  --gold-soft:      #C9A961;
  --gold-bright:    #D4B871;

  /* Surfaces */
  --cream:          #FBF8F0;
  --cream-warm:     #F4ECDB;
  --paper:          #FFFFFF;

  /* Ink */
  --ink:            #1A1F1B;
  --ink-soft:       #4A504C;
  --ink-mute:       #6B6F6B;

  /* Lines */
  --hairline:       #D8CFB8;
  --hairline-light: #ECE4CF;

  /* Spacing scale */
  --container:      1180px;
  --gutter:         24px;
  --section-y:      96px;

  /* Type */
  --serif:          'Fraunces', 'Times New Roman', serif;
  --sans:           'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Effects */
  --shadow-soft:    0 8px 24px -12px rgba(19, 53, 32, 0.18);
  --shadow-mid:     0 18px 40px -16px rgba(19, 53, 32, 0.25);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- 1. LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-y) 0;
}
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }
.section--dark { background: var(--green-deep); color: #fff; }

/* ---------- 2. TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--green);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(38px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }

.accent-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

p { color: var(--ink-soft); }
p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; line-height: 1.65; }

.gold-rule {
  width: 56px; height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

/* ---------- 3. NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img { height: 36px; width: auto; }
.nav-brand .brand-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.1;
  border-left: 1px solid var(--hairline);
  padding-left: 12px;
}
.nav-brand .brand-text .sub {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active {
  color: var(--green);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  margin: 4px 0;
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
}
.btn svg, .btn .icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--green);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1FAB54;
  border-color: #1FAB54;
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 5. HERO ---------- */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(176, 140, 74, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(30, 77, 46, 0.06), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #F7F0DD 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 77, 46, 0.10);
  pointer-events: none;
}
.hero::before { top: -120px; right: -120px; width: 380px; height: 380px; }
.hero::after  { top: -40px;  right: -40px;  width: 220px; height: 220px; border-color: rgba(176,140,74,0.18); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow { margin-bottom: 24px; }
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content .lead {
  margin-bottom: 36px;
  max-width: 56ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.hero-meta .meta-stat {
  display: flex;
  flex-direction: column;
}
.hero-meta .meta-stat .num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--green);
  font-weight: 500;
  line-height: 1;
}
.hero-meta .meta-stat .num .accent { color: var(--gold); }
.hero-meta .meta-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .logo-medal {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .logo-medal::before,
.hero-visual .logo-medal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.hero-visual .logo-medal::after {
  inset: 20px;
  border-color: var(--green);
  opacity: 0.15;
}
.hero-visual img {
  width: 78%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Inner-page hero (smaller) */
.hero-inner {
  background:
    radial-gradient(ellipse at top right, rgba(176, 140, 74, 0.10), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #F7F0DD 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--hairline-light);
}
.hero-inner::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border: 1px solid rgba(30, 77, 46, 0.10);
  border-radius: 50%;
}
.hero-inner .container { position: relative; z-index: 2; }
.hero-inner .eyebrow { margin-bottom: 18px; }
.hero-inner h1 { margin-bottom: 16px; }
.hero-inner p.lead { margin: 0 auto; }

/* ---------- 6. TRUST BAR ---------- */
.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  background: var(--paper);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-right: 24px;
  border-right: 1px solid var(--hairline);
  margin-right: 8px;
}
.trust-logo {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 500;
  padding: 8px 16px;
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-sm);
  font-style: italic;
  opacity: 0.7;
}

/* ---------- 7. SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--hairline-light);
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-mid);
  transform: translateY(-2px);
}
.service-card .service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.service-card h3 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline-light);
}
.service-card ul {
  list-style: none;
}
.service-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* services-grid variant: 4 columns on landing */
.services-grid--four { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.services-grid--four .service-card { padding: 26px 22px; }
.services-grid--four .service-card li { font-size: 13px; }

/* ---------- 8. PROCESS STEPS ---------- */
.process {
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  padding-top: 16px;
}
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline-light);
}
.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- 9. LEADERSHIP / FOUNDERS ---------- */
.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.leader-card {
  background: var(--cream);
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.leader-card .role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.leader-card .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.15;
}
.leader-card .bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.leader-card .bio strong { color: var(--green); font-weight: 600; }

/* ---------- 10. TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--hairline-light);
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial::before {
  content: "â";
  position: absolute;
  top: 12px;
  left: 22px;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.testimonial .quote {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin-top: 28px;
  margin-bottom: 24px;
  flex: 1;
}
.testimonial .author {
  padding-top: 18px;
  border-top: 1px solid var(--hairline-light);
}
.testimonial .author .author-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial .author .author-meta {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ---------- 11. WHY-US / CHECKLIST ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .why-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--green);
  margin-bottom: 6px;
  font-weight: 500;
}
.why-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- 12. INDUSTRIES ---------- */
.industries-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
  margin: 32px auto 0;
}
.industries-strip .chip {
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--green);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- 13. FINAL CTA BLOCK ---------- */
.cta-block {
  background:
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.10), transparent 55%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: 64px 56px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 50%;
}
.cta-block::after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 50%;
}
.cta-block .eyebrow {
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.cta-block .eyebrow::before { background: var(--gold-bright); }
.cta-block h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-block h2 .accent-italic { color: var(--gold-bright); }
.cta-block p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin: 0 auto 32px;
  max-width: 54ch;
  position: relative;
  z-index: 2;
}
.cta-block .btn-group {
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ---------- 14. CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  background: var(--green-deep);
  color: #fff;
  padding: 40px 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  bottom: -60px; left: -30px;
  width: 220px; height: 220px;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 50%;
}
.contact-info h3 {
  color: var(--gold-bright);
  margin-bottom: 8px;
  font-size: 22px;
}
.contact-info > p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  position: relative;
  z-index: 2;
}
.contact-info .info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.contact-info .info-row .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  min-width: 72px;
  padding-top: 4px;
}
.contact-info .info-row .value {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
}
.contact-info .info-row a { color: rgba(255,255,255,0.95); }
.contact-info .quote-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: var(--paper);
  padding: 40px 36px;
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
}
.contact-form h3 {
  margin-bottom: 6px;
  font-size: 22px;
}
.contact-form > p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- 15. FOOTER ---------- */
.footer {
  background: var(--green-dark);
  color: #fff;
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 70%, var(--gold) 70%, var(--gold) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  filter: brightness(1.1);
  margin-bottom: 16px;
}
.footer-brand .brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 32ch;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li {
  margin-bottom: 10px;
}
.footer li a, .footer li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer li a:hover { color: var(--gold-bright); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  color: var(--gold-soft);
  transition: all 0.2s;
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

/* ---------- 16. ABOUT / SERVICES PAGE BLOCKS ---------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-block--reverse > div:first-child { order: 2; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px 24px;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
}
.value-card .value-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 8px;
}
.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.platform-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}
.platform-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.platform-card .platform-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 4px;
}
.platform-card .platform-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- 17. UTILITY ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 32px; }

/* ---------- 18. RESPONSIVE ---------- */
@media (max-width: 960px) {
  :root { --section-y: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content .eyebrow { justify-content: center; display: inline-flex; }
  .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; flex-wrap: wrap; }
  .hero-visual .logo-medal { width: 280px; height: 280px; }

  .services-grid,
  .services-grid--four { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .leaders { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
  .split-block--reverse > div:first-child { order: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .platforms { grid-template-columns: 1fr 1fr; }

  .cta-block { padding: 48px 28px; }
}

@media (max-width: 600px) {
  :root { --section-y: 48px; --gutter: 18px; }
  h1 { font-size: 32px; }
  .services-grid,
  .services-grid--four,
  .process-steps,
  .why-grid,
  .footer-grid,
  .values-grid,
  .platforms { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
  .trust-bar-inner { gap: 16px; }
  .trust-bar-label { border-right: none; padding-right: 0; }
  .nav-brand .brand-text { display: none; }
}


/* ---------- 19. FORM NOTICES ---------- */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  display: none;
}
.notice.ok  { background: #E8F3EC; color: #1E4D2E; border: 1px solid #BFDCC9; display: block; }
.notice.err { background: #FBEEEA; color: #8A3A2A; border: 1px solid #EFC9BD; display: block; }
