/* The Protection Journal — Professional Recruitment Stylesheet
   Navy + white, geometric sans. Clean, trustworthy, editorial. */

:root {
  --navy: #14243d;          /* primary navy */
  --navy-deep: #0c1729;     /* hero / footer */
  --navy-ink: #1c2b44;      /* headings on white */
  --text: #3c4a61;          /* body text */
  --muted: #6b7a90;
  --page: #ffffff;
  --alt: #f4f6f9;           /* alternate section bg */
  --line: #e3e8ef;
  --line-strong: #c9d2de;
  --accent: #b08d4f;        /* understated bronze — links/highlights */
  --accent-deep: #96763c;
  --on-navy: #eef2f7;
  --on-navy-soft: rgba(238, 242, 247, 0.75);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--page);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top notice bar */
.notice-bar {
  background: var(--navy-deep);
  color: var(--on-navy-soft);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
}

/* Header */
header.masthead {
  border-bottom: 1px solid var(--line);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

.masthead-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.brand {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--navy-ink);
  text-decoration: none;
  line-height: 1;
}

.brand-the {
  font-weight: 400;
  color: var(--muted);
  font-size: 21px;
  margin-right: 2px;
}

.brand-journal {
  color: var(--accent-deep);
  font-weight: 700;
}

nav.primary {
  display: flex;
  gap: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

nav.primary a {
  color: var(--navy-ink);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 500;
}

nav.primary a:hover { color: var(--accent-deep); }

/* Hero — navy band */
.hero {
  padding: 96px 40px 84px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%, #1a3050 100%);
  position: relative;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

h1.hero-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  max-width: 1080px;
  color: #ffffff;
}

h1.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-deck {
  font-size: 18px;
  line-height: 1.7;
  max-width: 920px;
  color: var(--on-navy-soft);
  font-weight: 300;
}

.byline {
  margin-top: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 18px;
  display: inline-block;
  font-weight: 500;
}

/* Article body */
article.guide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 40px;
}

article.guide h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 64px 0 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy-ink);
}

article.guide h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

article.guide h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 38px 0 14px;
  color: var(--navy-ink);
}

article.guide p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

article.guide p.lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--navy-ink);
  font-weight: 400;
  margin-bottom: 36px;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
}

article.guide a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(176,141,79,0.4);
  transition: all 0.25s;
  font-weight: 500;
}

article.guide a:hover {
  color: var(--navy-ink);
  border-bottom-color: var(--navy-ink);
}

article.guide strong {
  font-weight: 600;
  color: var(--navy-ink);
}

article.guide ul {
  margin: 22px 0 30px 0;
}

article.guide ul li {
  margin-bottom: 12px;
  font-size: 16.5px;
  line-height: 1.75;
  list-style: none;
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

article.guide ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

/* Inline editorial note — quiet, no badge, no card feel */
.recommended-callout {
  background: var(--alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 28px 30px;
  margin: 40px 0;
  position: relative;
}

.recommended-callout::before { content: none; }

.recommended-callout h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy-ink);
}

.recommended-callout p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.recommended-callout a.cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--navy);
  text-decoration: none;
  padding: 13px 26px;
  border: 1px solid var(--navy);
  transition: all 0.3s;
  font-weight: 600;
  margin-top: 4px;
  border-radius: 3px;
}

.recommended-callout a.cta:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

/* Comparison / data rows */
.comparison {
  margin: 38px 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line-strong);
  padding: 6px 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row .label {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 13px;
  color: var(--navy-ink);
  font-weight: 600;
  padding-top: 2px;
  line-height: 1.5;
}

.comparison-row .content {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
}

/* Footer */
footer.colophon {
  background: var(--navy-deep);
  color: var(--on-navy);
  padding: 70px 40px 36px;
  margin-top: 70px;
}

.colophon-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.colophon-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.colophon h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.colophon p, .colophon a {
  color: var(--on-navy-soft);
  font-size: 14.5px;
  line-height: 1.75;
  text-decoration: none;
  display: block;
  margin-bottom: 9px;
}

.colophon a:hover { color: #ffffff; }

.colophon-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,242,247,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 400;
}

/* City index grid — clean white cards */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--page);
}

.city-card {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  background: #ffffff;
  position: relative;
  box-shadow: 0 1px 2px rgba(20,36,61,0.04);
}

.city-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 4px 4px 0 0;
}

.city-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 30px rgba(20,36,61,0.10);
  transform: translateY(-2px);
}

.city-card:hover::after { transform: scaleX(1); }

.city-card:hover .city-card-arrow {
  color: var(--navy-ink);
  transform: translateX(5px);
}

.city-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.city-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  color: var(--navy-ink);
}

.city-card .city-card-country {
  color: var(--accent-deep);
  font-size: 13.5px;
  margin-bottom: 14px;
  font-weight: 500;
}

.city-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 22px;
}

.city-card-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
  color: var(--accent-deep);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 16px; }
  nav.primary { display: none; }
  header.masthead { padding: 16px 22px; }
  .hero { padding: 56px 24px 50px; }
  h1.hero-title { font-size: 30px; }
  .hero-deck { font-size: 16px; }
  article.guide { padding: 48px 24px; }
  article.guide h2 { font-size: 23px; }
  article.guide p { font-size: 16px; }
  article.guide p.lead { font-size: 18px; padding-left: 16px; }
  .recommended-callout { padding: 22px 20px; }
  .city-grid { padding: 36px 22px; gap: 16px; }
  .colophon-grid { grid-template-columns: 1fr; gap: 36px; }
  .comparison-row { grid-template-columns: 1fr; gap: 6px; }
  footer.colophon { padding: 52px 24px 28px; }
}

::selection { background: var(--navy); color: #ffffff; }
