/* ============================================================
   SHEPHERDS SOURCE GROUP — MASTER STYLESHEET
   Production-grade · Clean · Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #faefe7;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Brand Tokens ── */
:root {
  --navy:      #203b24;
  --navy-dark: #203b24;
  --navy-dark-mid:  #203b24;
  --gold:      #aa5c26;
  --gold-light:#f5dcc9;
  --gold-pale: #fdf3ec;
  --green:     #1D6B38;
  --green-pale:#EBF4EE;
  --stone:     #faefe7;
  --stone-mid: #f5e4d8;
  --stone-dark:#ead8cc;
  --ink:       #1A1A1A;
  --ink-mid:   #3D3D3D;
  --ink-light: #6B6B6B;
  --border:    #E0DAD2;
  --white:     #FFFFFF;
  --max-w:     1140px;
  --nav-h:     80px;
  --radius:    4px;
  --radius-md: 8px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var( --navy-dark);
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.2rem, 4.5vw, 2.625rem);
  font-weight: 700;
}
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 15px; color: var(--ink-mid); line-height: 1.8; }
.lead { font-size: 17px; line-height: 1.75; color: var(--ink-mid); }

/* ── Section Label ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow-line::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-dark-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-dark);
  border: 1.5px solid var(--navy-dark);
}
.btn-ghost:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #8a4a1e;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var( --navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}
.nav-logo-name { display: none; }
.nav-logo-country { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: color 0.15s;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--gold); }
.nav-link .caret {
  font-size: 8px;
  transition: transform 0.2s;
  opacity: 0.5;
}
.nav-links > li:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var( --navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-lg);
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd-item {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: all 0.15s;
}
.nav-dd-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.nav-dd-item.active { color: var(--gold); }
.nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 5px 0;
}

/* Nav CTA */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.nav-lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.15s;
}
.nav-lang-btn:hover { color: var(--white); }
.nav-contact-btn {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-contact-btn:hover { background: #8a4a1e; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.25s;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var( --navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 999;
  padding: 20px 24px 32px;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
}
.nav-mobile.open { display: block; }
.nav-mobile-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.03em;
}
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-sub {
  padding-left: 14px;
}
.nav-mobile-sub a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-mobile-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: var(--radius);
  margin-top: 20px;
}

/* ── Image Placeholders ── */
.img-placeholder {
  background: var(--stone-mid);
  position: relative;
  overflow: hidden;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 100%);
}

/* ── Sub-navigation (About section) ── */
.sub-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.sub-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-link {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 17px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.sub-nav-link:hover { color: var(--navy-dark); }
.sub-nav-link.active {
  color: var(--navy-dark);
  border-bottom-color: var(--gold);
}

/* .page-hero styles consolidated at bottom of file */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Sections ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.section-white { background: var(--white); }
.section-stone { background: var(--stone); }
.section-navy { background: var( --navy-dark); }
.section-gold { background: var(--gold-pale); }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: center; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: center; }
@media (max-width: 960px) {
  .grid-2, .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section, .section-lg { padding: 56px 0; }
}

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-gold { height: 1.5px; background: var(--gold); width: 48px; margin: 20px 0; }
.divider-thin { height: 1px; background: var(--border); width: 100%; margin: 40px 0; }

/* ── Timeline ── */
.timeline { position: relative; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--gold-pale);
  flex-shrink: 0;
}
.timeline-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 6px;
  min-height: 40px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var( --navy-dark);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ── Value cards ── */
.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-dark);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.value-card:hover { box-shadow: var(--shadow); }
.value-card.gold-top { border-top-color: var(--gold); }
.value-card.green-top { border-top-color: var(--green); }
.value-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var( --navy-dark);
  margin-bottom: 12px;
}
.value-text {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ── Team cards ── */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: var(--shadow); }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--stone-mid);
}
.team-photo.square { aspect-ratio: 1/1; }
.team-body { padding: 24px; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var( --navy-dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-office {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ── Stat blocks ── */
.stat-block { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  text-transform: uppercase;
}

/* ── Cert / badge strip ── */
.cert-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius);
  border: 1px solid;
}
.cert-badge-navy {
  background: rgba(12,61,110,0.08);
  border-color: rgba(12,61,110,0.2);
  color: var(--navy-dark);
}
.cert-badge-gold {
  background: var(--gold-pale);
  border-color: rgba(184,147,42,0.3);
  color: var(--gold);
}
.cert-badge-green {
  background: var(--green-pale);
  border-color: rgba(29,107,56,0.2);
  color: var(--green);
}
.cert-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ── Entity blocks ── */
.entity-block {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.entity-block-navy {
  background: #f5e4d8;
  border-color: #C5D5E8;
}
.entity-block-gold {
  background: var(--gold-pale);
  border-color: rgba(184,147,42,0.25);
}
.entity-flag {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.entity-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var( --navy-dark);
  margin-bottom: 4px;
}
.entity-role {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 14px;
}
.entity-desc {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.entity-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.entity-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  background: rgba(12,61,110,0.08);
  color: var(--navy-dark);
  border: 1px solid rgba(12,61,110,0.18);
}
.entity-tag-gold {
  background: var(--gold-pale);
  color: #8a6d1a;
  border: 1px solid rgba(184,147,42,0.3);
}

/* ── Partner logos ── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.partner-cell {
  background: var(--white);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-ph {
  width: 100%;
  height: 36px;
  background: var(--stone-mid);
  border-radius: var(--radius);
}

/* ── Quote block ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var( --navy-dark);
  line-height: 1.65;
}
.pull-quote-source {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: 14px;
  text-transform: uppercase;
}

/* ── Info row ── */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:first-child { border-top: 1px solid var(--border); }
.info-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-light);
  min-width: 140px;
  flex-shrink: 0;
  padding-top: 2px;
}
.info-row-value {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var( --navy-dark);
  border-radius: var(--radius-md);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.55); margin-top: 8px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  background: var( --navy-dark);
  color: rgba(255,255,255,0.45);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand-tagline {
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}
.footer-col strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-entities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px 0;
}
.footer-entity {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.footer-entity-flag { font-size: 20px; margin-bottom: 8px; display: block; }
.footer-entity-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3px;
}
.footer-entity-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var( --navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  z-index: 9000;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,0.55); }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.cookie-btn-accept { background: var(--gold); color: var(--white); }
.cookie-btn-accept:hover { background: #8a4a1e; }
.cookie-btn-manage {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.cookie-btn-manage:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── Partner Map ── */
@media (max-width: 860px) {
  #partner-map-section .container + div > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  #partner-map-section div[style*="border-left"] {
    border-left: none !important;
    border-top: 1px solid rgba(184,147,42,0.2) !important;
    padding: 24px !important;
  }
  #location-list { max-height: 200px; overflow-y: auto; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta-group { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-entities { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 16px; }
  .sub-nav-inner { padding: 0 20px; }
}

/* ============================================================
   TRANSLATION — RTL, ARABIC FONT & LOADER STYLES
   ============================================================ */

/* Arabic font — loaded when RTL is active */
[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* ── RTL layout flips ── */
[dir="rtl"] .nav-inner             { flex-direction: row-reverse; }
[dir="rtl"] .nav-logo              { margin-right: 0; margin-left: auto; }
[dir="rtl"] .nav-cta-group         { margin-left: 0; margin-right: 20px; padding-left: 0; padding-right: 20px; border-left: none; border-right: 1px solid rgba(255,255,255,0.1); }
[dir="rtl"] .footer-grid           { direction: rtl; }
[dir="rtl"] .footer-bottom         { flex-direction: row-reverse; }
[dir="rtl"] .footer-legal          { flex-direction: row-reverse; }
[dir="rtl"] .section-header        { flex-direction: row-reverse; }
[dir="rtl"] .hero-eyebrow::before,
[dir="rtl"] .section-eyebrow::before,
[dir="rtl"] .origin-eyebrow::before,
[dir="rtl"] .cert-section-label-eyebrow::before,
[dir="rtl"] .office-location-label::before,
[dir="rtl"] .product-tag::before   { display: none; }
[dir="rtl"] .hero-eyebrow          { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .hero-h1,
[dir="rtl"] .hero-sub              { text-align: right; }
[dir="rtl"] .hero-ctas             { flex-direction: row-reverse; }
[dir="rtl"] .cert-section-inner    { direction: rtl; }
[dir="rtl"] .cert-section-label    { padding: 24px 0 24px 28px; border-right: none; border-left: 1px solid var(--border); text-align: right; }
[dir="rtl"] .offices-grid          { direction: rtl; }
[dir="rtl"] .office-card           { align-items: flex-end; text-align: right; }
[dir="rtl"] .origin-content-side::before { left: auto; right: 0; }
[dir="rtl"] .origin-content-inner  { text-align: right; }
[dir="rtl"] .nav-mobile            { direction: rtl; text-align: right; }
[dir="rtl"] .footer-col            { text-align: right; }

/* Active lang label in button */
.lang-active {
  font-weight: 700;
  color: var(--gold);
}

/* ── Translation loader overlay ── */
#ssg-translate-loader {
  position: fixed;
  inset: 0;
  background: rgba(8, 31, 60, 0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(3px);
}
#ssg-translate-loader.active {
  opacity: 1;
  visibility: visible;
}
.ssg-loader-inner {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  font-size: 14px;
  font-weight: 600;
  color: var( --navy-dark);
  letter-spacing: 0.03em;
}
.ssg-loader-spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ssgSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes ssgSpin {
  to { transform: rotate(360deg); }
}

/* ── Error toast ── */
.ssg-translate-error {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #c0392b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  animation: ssgToastIn 0.3s ease;
}
@keyframes ssgToastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ── Reveal animation (shared across all pages) ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* ── Floating WhatsApp Button ─────────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 32px; left: 32px; z-index: 8000; display: flex; align-items: center; flex-direction: row; gap: 0; cursor: pointer; text-decoration: none; filter: drop-shadow(0 4px 16px rgba(37,211,102,0.35)); transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); filter: drop-shadow(0 8px 24px rgba(37,211,102,0.5)); }
.wa-bubble { width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.wa-bubble svg { width: 30px; height: 30px; }
.wa-label { max-width: 180px; overflow: hidden; opacity: 1; white-space: nowrap; background: #25D366; color: #fff; font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 600; height: 58px; display: flex; align-items: center; border-radius: 0 29px 29px 0; margin-left: -29px; padding: 0 26px 0 31px; }
.wa-bubble::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,0.4); animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 70% { transform: scale(1.6); opacity: 0; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 600px) { .whatsapp-float { bottom: 20px; left: 20px; } .wa-bubble { width: 52px; height: 52px; } }

/* ── Footer Social Icons ──────────────────────────────────────────────────── */
.footer-social { display: flex; gap: 12px; align-items: center; padding: 20px 0 8px; margin-top: 8px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s, transform 0.2s; text-decoration: none; }
.footer-social-link:hover { background: var(--gold, #C9A84C); color: #fff; transform: translateY(-2px); }

/* ── Page hero (shared across inner pages) ────────────────────────────────── */
.page-hero { background: #000; padding: 80px 0 72px; position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.62); max-width: 640px; }
