:root {
  --ink: #0E2A26;
  --ink-2: #1B3D38;
  --muted: #4A5C58;
  --muted-2: #7A8B87;
  --bg: #F5F2EA;
  --bg-2: #EDE8DA;
  --bg-3: #E5DFCE;
  --bg-elev: #FFFFFF;
  --accent: #86BC25;
  --accent-hover: #6DA019;
  --accent-soft: rgba(134,188,37,0.12);
  --border: #D9D3C4;
  --border-elev: #E6E2D5;
  --shadow-sm: 0 1px 2px rgba(14,42,38,0.04);
  --shadow-md: 0 8px 24px -12px rgba(14,42,38,0.14);
  --shadow-lg: 0 24px 48px -24px rgba(14,42,38,0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--bg); }
.serif { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.015em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* ============ ANNOUNCE ============ */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  padding: 10px 24px;
  text-align: center;
  letter-spacing: 0.01em;
}
.announce a { border-bottom: 1px solid rgba(245,242,234,0.4); padding-bottom: 1px; }
.announce a:hover { border-color: var(--accent); }
.announce .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 10px; vertical-align: middle; }

/* ============ NAV ============ */
.nav { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; gap: 40px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.nav-mark { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 14.5px; padding: 10px 16px; border-radius: 4px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--accent-hover); background: var(--accent-soft); }
.nav-links a.active { color: var(--accent-hover); background: var(--accent-soft); }
.nav-links a.nav-cta { background: var(--ink); color: var(--bg); font-weight: 600; font-size: 14.5px; padding: 12px 20px; border-radius: 4px; margin-left: 12px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
.nav-links a.nav-cta:hover { background: var(--ink-2); color: var(--bg); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--ink); cursor: pointer; }
@media (max-width: 900px) {
  .nav-inner { gap: 16px; padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: stretch; padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: 15px; font-family: inherit; padding: 14px 24px; border-radius: 4px; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s; line-height: 1; }
.btn-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); color: var(--bg); }
.btn-accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-link { background: transparent; color: var(--ink); padding: 14px 4px; border: none; border-bottom: 1.5px solid var(--ink); border-radius: 0; }
.btn-link:hover { color: var(--accent-hover); border-color: var(--accent); }
.btn .arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ BREADCRUMB ============ */
.crumb { padding: 20px 0 0; font-size: 13px; color: var(--muted); }
.crumb a { color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.crumb a:hover { color: var(--ink); border-color: var(--border); }
.crumb .sep { margin: 0 8px; color: var(--muted-2); }
.crumb .here { color: var(--ink); font-weight: 500; }

/* ============ COUNTRY HERO ============ */
.chero { padding: 60px 0 80px; background: var(--bg); position: relative; overflow: hidden; }
.chero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; }
.chero .kicker { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 28px; }
.chero .kicker::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.chero .kicker .flag { width: 26px; height: 18px; border-radius: 2px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.chero .kicker .flag svg { width: 100%; height: 100%; display: block; }
.chero h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(42px, 5.2vw, 68px); line-height: 1.04; letter-spacing: -0.028em; color: var(--ink); margin-bottom: 24px; }
.chero h1 em { font-style: italic; font-weight: 400; position: relative; }
.chero h1 em::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 8px; background: var(--accent); opacity: 0.5; z-index: -1; }
.chero .lede { font-size: 18.5px; line-height: 1.6; color: var(--muted); max-width: 560px; margin-bottom: 36px; }
.chero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.chero-fig { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 8px; padding: 32px; box-shadow: var(--shadow-md); position: relative; max-width: 440px; margin-left: auto; }
.chero-fig::before { content: ''; position: absolute; top: -1px; left: 24px; width: 60px; height: 3px; background: var(--accent); }
.chero-fig .fig-flag { width: 84px; height: 60px; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.15); margin-bottom: 24px; }
.chero-fig .fig-flag svg { width: 100%; height: 100%; display: block; }
.chero-fig .fig-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 26px; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.chero-fig .fig-entity { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; letter-spacing: 0.01em; }
.chero-fig .fig-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 20px; border-top: 1px solid var(--border-elev); }
.chero-fig .fig-stat .label { font-size: 11px; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 6px; }
.chero-fig .fig-stat .val { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
@media (max-width: 900px) {
  .chero { padding: 40px 0 60px; }
  .chero-grid { grid-template-columns: 1fr; gap: 40px; }
  .chero-fig { max-width: 100%; margin-left: 0; }
}

/* ============ SECTION HEADS ============ */
section { position: relative; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-hover); margin-bottom: 18px; }
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent-hover); }
.section-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 3.8vw, 46px); line-height: 1.08; letter-spacing: -0.025em; color: var(--ink); max-width: 780px; margin-bottom: 18px; }
.section-title em { font-style: italic; font-weight: 400; }
.section-lede { font-size: 17.5px; line-height: 1.55; color: var(--muted); max-width: 620px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head-row .head-copy { max-width: 720px; }
.section-head-row .head-aside { padding-bottom: 8px; font-size: 14px; color: var(--muted); }
.section-head-row .head-aside a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }
.section-head-row .head-aside a:hover { color: var(--accent-hover); border-color: var(--accent); }

/* ============ SNAPSHOT BAND ============ */
.snapshot { padding: 32px 0; background: var(--ink); color: var(--bg); }
.snap-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; }
.snap-stat { display: flex; flex-direction: column; gap: 6px; }
.snap-stat .label { font-size: 11px; font-weight: 600; color: rgba(245,242,234,0.55); text-transform: uppercase; letter-spacing: 0.14em; }
.snap-stat .val { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; color: var(--bg); letter-spacing: -0.015em; line-height: 1.15; }
@media (max-width: 900px) {
  .snap-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .snap-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SERVICES ============ */
.c-services { padding: 100px 0 90px; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.service { background: var(--bg-elev); padding: 36px 32px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; display: flex; flex-direction: column; transition: background 0.2s; min-height: 300px; }
.service:hover { background: #FDFCF7; }
.service::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left center; transition: transform 0.3s ease; }
.service:hover::after { transform: scaleX(1); }
.service-num { font-family: 'Fraunces', serif; font-weight: 400; font-size: 15px; color: var(--muted-2); letter-spacing: 0.04em; margin-bottom: 20px; }
.service-icon { color: var(--ink); margin-bottom: 22px; display: flex; }
.service h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--ink); letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 12px; }
.service p { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex-grow: 1; }
@media (max-width: 900px) {
  .c-services { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ WHY / ADVANTAGES ============ */
.why { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: flex-start; }
.why-left { position: sticky; top: 100px; }
.why-list { display: flex; flex-direction: column; }
.why-item { padding: 32px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 44px 1fr; gap: 24px; align-items: flex-start; }
.why-item:first-child { border-top: none; padding-top: 0; }
.why-item:last-child { padding-bottom: 0; }
.why-item .check { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-hover); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 8px; line-height: 1.2; }
.why-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) {
  .why { padding: 70px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-left { position: static; }
}

/* ============ LOCAL ATTACHÉ ============ */
.local-attache { padding: 100px 0; background: var(--bg); }
.la-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 8px; padding: 48px; position: relative; }
.la-inner::before { content: ''; position: absolute; top: -1px; left: 40px; width: 60px; height: 3px; background: var(--accent); }
.la-portrait { display: flex; flex-direction: column; align-items: flex-start; }
.la-avatar { width: 128px; height: 128px; border-radius: 50%; background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 500; font-size: 48px; letter-spacing: -0.03em; margin-bottom: 20px; }
.la-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.la-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.la-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 26px; color: var(--ink); letter-spacing: -0.015em; }
.la-role { font-size: 14px; color: var(--muted); margin-top: 4px; }
.la-body h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 28px; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 18px; line-height: 1.15; }
.la-body h3 em { font-style: italic; }
.la-body p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.la-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: color 0.15s, border-color 0.15s; }
.la-cta:hover { color: var(--accent-hover); border-color: var(--accent); }
@media (max-width: 900px) {
  .local-attache { padding: 70px 0; }
  .la-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
}

/* ============ FIT / NOT FIT ============ */
.fit { padding: 100px 0; background: var(--bg); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fit-col { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 8px; padding: 36px; }
.fit-col.good { border-top: 3px solid var(--accent); }
.fit-col.bad { border-top: 3px solid var(--muted-2); }
.fit-col h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-elev); }
.fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-col li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); line-height: 1.5; }
.fit-col.good li::before { content: '✓'; color: var(--accent-hover); font-weight: 700; font-size: 16px; flex-shrink: 0; width: 20px; }
.fit-col.bad li::before { content: '—'; color: var(--muted-2); font-weight: 700; font-size: 16px; flex-shrink: 0; width: 20px; }
@media (max-width: 900px) {
  .fit { padding: 70px 0; }
  .fit-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: flex-start; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 24px 0; font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; line-height: 1.3; }
.faq-question .plus { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform 0.3s; }
.faq-question .plus::before, .faq-question .plus::after { content: ''; position: absolute; background: var(--ink); left: 50%; top: 50%; }
.faq-question .plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-question .plus::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.3s; }
.faq-item.open .faq-question .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 660px; }
.faq-item.open .faq-answer { max-height: 500px; }
@media (max-width: 900px) {
  .faq { padding: 70px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ CTA STRIP ============ */
.cta-strip { padding: 90px 0; background: var(--accent); color: var(--ink); }
.cta-strip-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cta-strip h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 14px; }
.cta-strip h2 em { font-style: italic; }
.cta-strip p { font-size: 17px; color: rgba(14,42,38,0.8); line-height: 1.5; max-width: 540px; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.cta-strip .btn-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cta-strip .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-strip .btn-outline:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 900px) {
  .cta-strip { padding: 60px 0; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-strip-actions { justify-content: flex-start; }
}

/* ============ RELATED COUNTRIES ============ */
.related { padding: 90px 0; background: var(--bg); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-tile { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 8px; padding: 24px; display: flex; align-items: center; gap: 16px; transition: border-color 0.2s, transform 0.2s; }
.related-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-tile .rf { width: 36px; height: 26px; border-radius: 3px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.12); flex-shrink: 0; }
.related-tile .rf svg { width: 100%; height: 100%; display: block; }
.related-tile .rn { font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px; color: var(--ink); letter-spacing: -0.015em; }
.related-tile .rt { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.related-tile .ra { margin-left: auto; color: var(--muted-2); }
@media (max-width: 900px) {
  .related { padding: 60px 0; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer { background: var(--ink); color: rgba(245,242,234,0.7); padding: 80px 0 32px; border-top: 6px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--bg); font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 20px; }
.footer-tag { color: rgba(245,242,234,0.65); font-size: 14.5px; line-height: 1.6; max-width: 320px; margin-bottom: 24px; }
.footer-inline-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--bg); border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; }
.footer-inline-cta:hover { color: var(--accent); }
.footer-col h4 { color: var(--bg); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(245,242,234,0.7); font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; color: rgba(245,242,234,0.55); font-size: 13px; flex-wrap: wrap; gap: 16px; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--bg); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* fade-in on scroll */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
