/* The Protection Journal — Clean Editorial Stylesheet */

:root {
  --ink: #1a1a1a;
  --ink-soft: #2c2c2c;
  --paper: #ffffff;
  --paper-warm: #faf8f4;
  --gold: #8a6d2e;
  --gold-deep: #6b5424;
  --rule: #e5e2dc;
  --rule-strong: #2a2a2a;
  --muted: #5a5a5a;
  --muted-light: #888888;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top notice bar */
.notice-bar {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 20px;
  font-weight: 400;
}

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

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

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand-the {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 22px;
  margin-right: 4px;
}

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

nav.primary {
  display: flex;
  gap: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

/* Hero */
.hero {
  padding: 110px 40px 90px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}

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

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

h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 920px;
  color: var(--ink);
}

h1.hero-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-deck {
  font-size: 23px;
  line-height: 1.6;
  max-width: 740px;
  color: var(--ink-soft);
  font-weight: 300;
}

.byline {
  margin-top: 56px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: inline-block;
  font-weight: 500;
}

/* Article body */
article.guide {
  max-width: 740px;
  margin: 0 auto;
  padding: 90px 40px;
  background: var(--paper);
}

article.guide h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  margin: 80px 0 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  padding-left: 28px;
}

article.guide h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

article.guide h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 46px 0 18px;
  font-style: italic;
  color: var(--ink);
}

article.guide p {
  margin-bottom: 24px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-soft);
}

article.guide p.lead {
  font-size: 25px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-style: italic;
}

article.guide a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: all 0.25s;
  font-weight: 500;
}

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

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

article.guide ul {
  margin: 24px 0 32px 0;
}

article.guide ul li {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.75;
  list-style: none;
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

article.guide ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}

/* Recommended provider callout — light, clean version */
.recommended-callout {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  padding: 50px 48px;
  margin: 56px 0;
  position: relative;
}

.recommended-callout::before {
  content: 'Recommended Provider';
  position: absolute;
  top: -11px;
  left: 40px;
  background: var(--gold);
  color: var(--paper);
  padding: 5px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
}

.recommended-callout h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.recommended-callout p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.recommended-callout a.cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  transition: all 0.3s;
  font-weight: 500;
  margin-top: 8px;
}

.recommended-callout a.cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Comparison table */
.comparison {
  margin: 44px 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 12px 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

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

.comparison-row .label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  padding-top: 4px;
  line-height: 1.5;
}

.comparison-row .content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Footer */
footer.colophon {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 40px 40px;
  margin-top: 80px;
}

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

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

.colophon h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}

.colophon p, .colophon a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.75;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.colophon a:hover { color: var(--gold); }

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

/* City index grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  background: var(--paper-warm);
}

.city-card {
  padding: 44px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.35s ease;
  background: var(--paper);
  position: relative;
}

.city-card:hover {
  background: var(--paper-warm);
}

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

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

.city-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.city-card .city-card-country {
  font-style: italic;
  color: var(--gold-deep);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
}

.city-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

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

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 17px; }
  nav.primary { display: none; }
  header.masthead { padding: 22px 24px; }
  .hero { padding: 60px 24px 55px; }
  h1.hero-title { font-size: 36px; }
  .hero-deck { font-size: 19px; }
  article.guide { padding: 55px 24px; }
  article.guide h2 { font-size: 30px; padding-left: 0; }
  article.guide h2::before { display: none; }
  article.guide p { font-size: 17px; line-height: 1.75; }
  article.guide p.lead { font-size: 20px; padding-left: 18px; }
  .recommended-callout { padding: 36px 28px; }
  .recommended-callout h4 { font-size: 26px; }
  .colophon-grid { grid-template-columns: 1fr; gap: 40px; }
  .comparison-row { grid-template-columns: 1fr; gap: 8px; }
  footer.colophon { padding: 60px 24px 30px; }
}

::selection { background: var(--gold); color: var(--paper); }
