/* EuroDriveGuide — Design System */

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

:root {
  --cream:    #f7f5f0;
  --white:    #ffffff;
  --ink:      #1a1916;
  --ink-mid:  #4a4845;
  --ink-soft: #8a8885;
  --rule:     #e2dfd8;
  --accent:   #2d5a3d;
  --accent-l: #e8f0eb;
  --warn:     #b85c2a;
  --serif:    'Lora', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --max:      1160px;
  --r:        6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }
.logo-img { width: 30px !important; height: 30px !important; display: inline-block !important; border-radius: 50%; flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; list-style: none; font-size: 0.875rem; font-weight: 400; color: var(--ink-mid); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--accent); color: #fff; padding: 8px 18px; border-radius: var(--r); font-size: 0.875rem; font-weight: 500; transition: opacity 0.15s; }
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--ink); display: block; transition: transform 0.2s ease, opacity 0.2s ease; }

/* ── HERO ── */
.hero { max-width: var(--max); margin: 0 auto; padding: 80px 24px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.hero-label { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-l); padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.18; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { color: var(--ink-mid); font-size: 1.05rem; max-width: 440px; margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: #fff; padding: 13px 26px; border-radius: var(--r); font-size: 0.95rem; font-weight: 500; transition: opacity 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { opacity: 0.88; }
.btn-secondary { background: var(--white); color: var(--ink); border: 1px solid var(--rule); padding: 13px 26px; border-radius: var(--r); font-size: 0.95rem; font-weight: 400; transition: border-color 0.15s; }
.btn-secondary:hover { border-color: var(--ink-soft); }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--rule); }
.stat-val { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }

.hero-visual { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.country-card-preview { padding: 28px; }

/* ── CHECKLIST CARD ── */
.checklist-card { padding: 0; }
.checklist-header { background: var(--accent); padding: 16px 24px; }
.checklist-title { font-size: 0.9rem; font-weight: 600; color: #fff; letter-spacing: 0.01em; }
.checklist-items { list-style: none; margin: 0; padding: 0; }
.checklist-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 24px; border-bottom: 1px solid var(--rule); }
.checklist-item:last-child { border-bottom: none; }
.check-icon { font-size: 1.2rem; flex-shrink: 0; width: 26px; text-align: center; line-height: 1.4; }
.check-title { font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 3px; }
.check-desc { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.55; }
.ccp-flag { font-size: 2rem; margin-bottom: 12px; }
.ccp-country { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.ccp-sub { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; }
.ccp-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.pill { background: var(--cream); border: 1px solid var(--rule); font-size: 0.75rem; padding: 4px 10px; border-radius: 100px; color: var(--ink-mid); }
.pill.warn { background: #fef3ec; border-color: #f0c4a8; color: var(--warn); }
.pill.ok   { background: var(--accent-l); border-color: #c4d9ca; color: var(--accent); }
.ccp-divider { border: none; border-top: 1px solid var(--rule); margin: 0 0 18px; }
.ccp-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 0.85rem; border-bottom: 1px solid var(--rule); }
.ccp-row:last-child { border-bottom: none; }
.ccp-key { color: var(--ink-soft); }
.ccp-val { font-weight: 500; }
.ccp-affiliate { margin-top: 20px; background: var(--accent); color: #fff; text-align: center; padding: 12px; border-radius: var(--r); font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: opacity 0.15s; display: block; }
.ccp-affiliate:hover { opacity: 0.88; }

/* ── SEARCH ── */
.search-section { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); padding: 28px 24px; }
.search-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 10px; align-items: center; }
.search-inner label { font-size: 0.9rem; color: var(--ink-mid); white-space: nowrap; font-weight: 400; }
.search-wrap { position: relative; flex: 1; max-width: 440px; }
.search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); pointer-events: none; }
#country-search { width: 100%; padding: 11px 14px 11px 38px; border: 1px solid var(--rule); border-radius: var(--r); font-family: var(--sans); font-size: 0.92rem; background: var(--cream); color: var(--ink); outline: none; transition: border-color 0.15s; }
#country-search:focus { border-color: var(--accent); background: var(--white); }
#country-search::placeholder { color: var(--ink-soft); }

/* ── COUNTRY GRID ── */
.countries-section { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.section-count { font-size: 0.82rem; color: var(--ink-soft); }
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.country-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s; text-decoration: none; }
.country-card:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(45,90,61,0.08); transform: translateY(-1px); }
.cc-header { display: flex; align-items: center; gap: 10px; }
.cc-flag { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.cc-name { font-weight: 500; font-size: 0.88rem; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-badge { margin-left: auto; font-size: 0.68rem; padding: 2px 7px; border-radius: 100px; flex-shrink: 0; }
.badge-new { background: var(--accent-l); color: var(--accent); }
.badge-soon { background: var(--cream); color: var(--ink-soft); border: 1px solid var(--rule); }
.cc-facts { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--rule); padding-top: 10px; }
.cc-fact { font-size: 0.75rem; color: var(--ink-mid); display: flex; align-items: center; gap: 7px; line-height: 1.4; }
.cc-fact--note { color: var(--ink-soft); font-style: italic; }
.cc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cc-dot--ok   { background: var(--accent); }
.cc-dot--warn { background: #c0392b; }
.cc-dot--rec  { background: #d4820a; }
.no-results { grid-column: 1/-1; text-align: center; padding: 40px; color: var(--ink-soft); font-size: 0.92rem; }

/* ── FEATURES ── */
.features { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 56px 24px; }
.features-inner { max-width: var(--max); margin: 0 auto; }
.features-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.feature-icon { width: 36px; height: 36px; background: var(--accent-l); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1rem; }
.feature-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-body { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.6; font-weight: 300; }

/* ── COMPARE TABLE ── */
.compare-strip { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.compare-header { margin-bottom: 32px; }
.compare-header p { font-size: 0.92rem; color: var(--ink-mid); margin-top: 8px; font-weight: 300; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: var(--white); border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; }
.compare-table th { background: var(--cream); padding: 13px 18px; text-align: left; font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); border-bottom: 1px solid var(--rule); }
.compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--rule); color: var(--ink-mid); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cream); }
.company-name { font-weight: 500; color: var(--ink); }
.star { color: #d4a017; }
.check { color: var(--accent); font-weight: 500; }
.cross { color: var(--ink-soft); }
.compare-link { display: inline-block; background: var(--accent); color: #fff; padding: 7px 14px; border-radius: var(--r); font-size: 0.8rem; font-weight: 500; transition: opacity 0.15s; white-space: nowrap; }
.compare-link:hover { opacity: 0.85; }
.affiliate-disclaimer { margin-top: 12px; font-size: 0.75rem; color: var(--ink-soft); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--ink); color: var(--cream); padding: 56px 24px; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 10px; font-weight: 600; }
.newsletter p { font-size: 0.92rem; color: #a09e9a; margin-bottom: 28px; font-weight: 300; }
.nl-form { display: flex; gap: 10px; }
.nl-form input { flex: 1; padding: 12px 16px; border: 1px solid #3a3835; border-radius: var(--r); background: #2a2825; color: var(--cream); font-family: var(--sans); font-size: 0.9rem; outline: none; transition: border-color 0.15s; }
.nl-form input:focus { border-color: var(--accent); }
.nl-form input::placeholder { color: #6a6865; }
.nl-form button { background: var(--accent); color: #fff; border: none; padding: 12px 22px; border-radius: var(--r); font-family: var(--sans); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: opacity 0.15s; white-space: nowrap; }
.nl-form button:hover { opacity: 0.88; }
.nl-note { font-size: 0.74rem; color: #5a5855; margin-top: 12px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--rule); padding: 40px 24px; background: var(--cream); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand p { font-size: 0.82rem; color: var(--ink-soft); max-width: 240px; font-weight: 300; }
.footer-links h4 { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--ink-mid); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { max-width: var(--max); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: var(--ink-soft); }
.affiliate-notice { background: #fffbe6; border: 1px solid #f0e5a0; border-radius: var(--r); padding: 10px 16px; font-size: 0.78rem; color: #7a6a00; max-width: 440px; }

/* ── COUNTRY GUIDE PAGE ── */
.breadcrumb { border-bottom: 1px solid var(--rule); background: var(--white); padding: 12px 24px; font-size: 0.82rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-inner { max-width: var(--max); margin: 0 auto; }
.guide-hero { max-width: var(--max); margin: 0 auto; padding: 48px 24px 40px; display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; border-bottom: 1px solid var(--rule); }
.guide-hero-left { display: flex; gap: 20px; align-items: center; }
.guide-flag { font-size: 4rem; line-height: 1; }
.guide-title { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; letter-spacing: -0.02em; }
.guide-meta { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }
.guide-layout { max-width: var(--max); margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.guide-section { margin-bottom: 48px; }
.guide-section h2 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 10px; }
.speed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.speed-cell { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 18px; text-align: center; }
.speed-val { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--accent); line-height: 1; }
.speed-label { font-size: 0.75rem; color: var(--ink-soft); margin-top: 4px; }
.speed-note { background: #fffbe6; border: 1px solid #f0e5a0; border-radius: var(--r); padding: 12px 16px; font-size: 0.83rem; color: #6a5800; margin-bottom: 16px; }

/* ── SVG SPEED SIGNS ── */
.speed-signs-row { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 16px; }
.speed-sign-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.speed-sign-item svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12)); }
.speed-sign-label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.speed-sign-sub { font-size: 0.7rem; color: var(--ink-soft); margin-top: -4px; }

/* ── EV RULES BOX ── */
.ev-rules-box { background: #f0f7ff; border: 1px solid #b8d4f0; border-radius: var(--r); overflow: hidden; margin-top: 20px; }
.ev-rules-header { background: #1a3a5c; padding: 10px 16px; }
.ev-badge { font-size: 0.78rem; font-weight: 600; color: #7dd3fc; letter-spacing: 0.04em; text-transform: uppercase; }
.ev-rules-body { padding: 4px 0; }
.ev-rule-row { display: flex; gap: 12px; padding: 10px 16px; border-bottom: 1px solid #d4e8f8; font-size: 0.82rem; }
.ev-rule-row:last-child { border-bottom: none; }
.ev-rule-label { font-weight: 600; color: #1a3a5c; flex-shrink: 0; width: 140px; line-height: 1.5; }
.ev-rule-val { color: #2a4a6c; line-height: 1.55; }

/* ── FUEL PRICES SIDEBAR ── */
.fuel-price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--rule); }
.fuel-price-row:last-of-type { border-bottom: none; }
.fuel-type { font-size: 0.8rem; color: var(--ink-mid); }
.fuel-price { font-size: 0.88rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.fuel-unit { font-size: 0.72rem; font-weight: 400; color: var(--ink-soft); margin-left: 1px; }
.fuel-note { font-size: 0.72rem; color: var(--ink-soft); line-height: 1.5; margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--rule); }
.alcohol-box { background: #fff5f0; border: 1px solid #f0c4a8; border-radius: var(--r); padding: 20px; }
.alcohol-limit { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--warn); line-height: 1; margin-bottom: 6px; }
.alcohol-note { font-size: 0.83rem; color: var(--ink-mid); }
.alcohol-sub { font-size: 0.75rem; color: var(--ink-soft); margin-top: 8px; }
.vignette-alert { background: #fffbe6; border-left: 3px solid #d4a017; padding: 14px 18px; border-radius: 0 var(--r) var(--r) 0; margin-bottom: 16px; font-size: 0.88rem; }
.vignette-alert strong { color: #7a6200; }
.vignette-alert p { color: #6a5600; margin-top: 4px; font-size: 0.82rem; }
.equipment-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.equipment-list li { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 10px 14px; font-size: 0.88rem; }
.eq-check { color: var(--accent); font-weight: 600; }
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tips-list li { display: flex; gap: 12px; padding: 14px 16px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); font-size: 0.87rem; color: var(--ink-mid); }
.tip-arrow { color: var(--accent); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.routes-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.routes-list li { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); font-size: 0.88rem; font-weight: 500; }
.guide-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 20px; }
.sidebar-card h3 { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.fact-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 0.83rem; border-bottom: 1px solid var(--rule); }
.fact-row:last-child { border-bottom: none; }
.fact-row--note { display: block; padding: 2px 0 10px; border-bottom: 1px solid var(--rule); margin-top: -4px; }
.fact-row--note:last-child { border-bottom: none; }
.fact-note { font-size: 0.74rem; color: var(--ink-soft); line-height: 1.5; font-style: italic; }
.fact-key { color: var(--ink-soft); }
.fact-val { font-weight: 500; }
.fact-val.danger { color: var(--warn); }
.city-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 0.83rem; border-bottom: 1px solid var(--rule); }
.city-row:last-child { border-bottom: none; }
.city-link { font-size: 0.75rem; color: var(--accent); font-weight: 500; }
.city-link:hover { text-decoration: underline; }
.insurance-card { background: var(--accent-l); border: 1px solid #c4d9ca; border-radius: 8px; padding: 18px; }
.insurance-card h3 { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.insurance-card p { font-size: 0.82rem; color: #3a5a42; line-height: 1.5; }
.guide-affiliate { background: var(--ink); color: var(--cream); border-radius: 8px; padding: 24px; }
.guide-affiliate h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.guide-affiliate p { font-size: 0.82rem; color: #a09e9a; margin-bottom: 16px; font-weight: 300; }
.guide-affiliate ul { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 5px; }
.guide-affiliate ul li { font-size: 0.8rem; color: #c0beba; }
.guide-affiliate ul li::before { content: '✓  '; color: var(--accent); }
.btn-affiliate { display: block; background: var(--accent); color: #fff; text-align: center; padding: 11px; border-radius: var(--r); font-size: 0.88rem; font-weight: 500; transition: opacity 0.15s; }
.btn-affiliate:hover { opacity: 0.88; }
.affiliate-note { font-size: 0.72rem; color: #5a5855; margin-top: 10px; text-align: center; }
.related-section { background: var(--white); border-top: 1px solid var(--rule); padding: 48px 24px; }
.related-inner { max-width: var(--max); margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.related-card { border: 1px solid var(--rule); border-radius: var(--r); padding: 18px; transition: border-color 0.15s, box-shadow 0.15s; }
.related-card:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(45,90,61,0.07); }
.related-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.related-card-flag { font-size: 1.5rem; }
.related-card-name { font-weight: 500; font-size: 0.9rem; }
.related-card-desc { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }
.related-card-link { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-top: 10px; display: block; }

/* ── BLOG / COMPARE / PAGES ── */
.page-hero { background: var(--white); border-bottom: 1px solid var(--rule); padding: 56px 24px; }
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero-inner h1 { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.page-hero-inner p { font-size: 1rem; color: var(--ink-mid); font-weight: 300; }
.blog-grid { max-width: var(--max); margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; transition: box-shadow 0.15s, border-color 0.15s; }
.blog-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.blog-card-img { background: var(--cream); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem; border-bottom: 1px solid var(--rule); }
.blog-card-body { padding: 22px; }
.blog-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-card-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.blog-card-excerpt { font-size: 0.83rem; color: var(--ink-mid); font-weight: 300; line-height: 1.6; }
.blog-card-read { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-top: 14px; display: block; }

/* ── ROAD SIGNS ── */
.section-intro { font-size: 0.88rem; color: var(--ink-mid); margin-bottom: 20px; line-height: 1.6; }
.signs-subhead { font-family: var(--serif); font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin: 24px 0 12px; }
.signs-grid { display: flex; flex-direction: column; gap: 10px; }
.sign-card { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 14px 16px; }
.sign-card--country { background: #fafaf7; border-color: #dedad2; }
.sign-icon { font-size: 1.5rem; flex-shrink: 0; width: 32px; text-align: center; padding-top: 2px; }
.sign-body { flex: 1; }
.sign-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 3px; color: var(--ink); }
.sign-desc { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.55; }

/* ── SPEED CAMERAS ── */
.camera-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.camera-stat { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 14px; text-align: center; }
.camera-stat-label { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.camera-stat-val { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.camera-stat-val.val-yes { color: var(--accent); }
.camera-stat-val.val-no { color: var(--warn); }
.camera-note { border-radius: var(--r); padding: 12px 16px; font-size: 0.83rem; line-height: 1.55; margin-bottom: 16px; }
.camera-note--info { background: var(--accent-l); border: 1px solid #c4d9ca; color: #2a4a33; }
.camera-note--warn { background: #fef3ec; border: 1px solid #f0c4a8; color: #7a3a1a; }
.camera-types-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.camera-types-list li { display: flex; gap: 10px; font-size: 0.84rem; color: var(--ink-mid); align-items: flex-start; }
.cam-bullet { flex-shrink: 0; }
.camera-fine-box { background: #fff8f3; border: 1px solid #f0c4a8; border-radius: var(--r); padding: 12px 16px; margin-bottom: 12px; }
.cfb-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--warn); font-weight: 600; margin-bottom: 4px; }
.camera-fine-box p { font-size: 0.83rem; color: var(--ink); line-height: 1.5; }
.camera-notes-text { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.6; }

/* ── PARKING SIGNS ── */
.parking-zones { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.parking-zone { border-radius: var(--r); padding: 14px 16px; border: 1px solid var(--rule); background: var(--white); }
.parking-zone--blue { border-left: 4px solid #3a7bd5; }
.parking-zone--gray { border-left: 4px solid #8a8885; }
.parking-zone--red  { border-left: 4px solid #c0392b; }
.parking-zone--white { border-left: 4px solid #ccc; }
.parking-zone--green { border-left: 4px solid #27ae60; }
.parking-zone--yellow { border-left: 4px solid #f1c40f; }
.pz-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.pz-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pz-dot--blue   { background: #3a7bd5; }
.pz-dot--gray   { background: #8a8885; }
.pz-dot--red    { background: #c0392b; }
.pz-dot--white  { background: #ccc; border: 1px solid #aaa; }
.pz-dot--green  { background: #27ae60; }
.pz-dot--yellow { background: #f1c40f; }
.pz-name { font-weight: 600; font-size: 0.87rem; color: var(--ink); }
.pz-desc { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.55; }
.line-colors { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.line-color-row { display: flex; align-items: center; gap: 12px; }
.lc-swatch { width: 32px; height: 10px; border-radius: 4px; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.1); }
.lc-swatch--yellow  { background: #f1c40f; }
.lc-swatch--blue    { background: #3a7bd5; }
.lc-swatch--white   { background: #e8e4dc; }
.lc-swatch--red     { background: #c0392b; }
.lc-swatch--green   { background: #27ae60; }
.lc-swatch--orange  { background: #e67e22; }
.lc-swatch--no      { background: repeating-linear-gradient(90deg, #ccc 0 6px, transparent 6px 12px); }
.lc-text { font-size: 0.82rem; color: var(--ink-mid); }
.lc-color { font-weight: 600; color: var(--ink); }
.lc-color::after { content: ' — '; color: var(--ink-soft); font-weight: 400; }
.parking-apps { font-size: 0.83rem; color: var(--ink-mid); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.app-tag { background: var(--accent-l); color: var(--accent); border: 1px solid #c4d9ca; border-radius: 100px; padding: 3px 10px; font-size: 0.75rem; font-weight: 500; }

/* ── DRIVING VOCABULARY ── */
.vocab-table {
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  font-size: 0.875rem;
}
.vocab-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 16px;
  gap: 12px;
}
.vocab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.vocab-row:last-child { border-bottom: none; }
.vocab-row:nth-child(even) { background: #faf9f6; }
.vocab-local {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.4;
}
.vocab-english {
  color: var(--ink-mid);
  line-height: 1.4;
}

/* ── EU DISCLAIMER ── */
.eu-disclaimer {
  background: #eef2f9;
  border-top: 1px solid #c8d4eb;
  border-bottom: 1px solid #c8d4eb;
  padding: 12px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: #3a4a6b;
  line-height: 1.5;
}
.eu-disclaimer strong { font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.5s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.18s; }
.hero-content > *:nth-child(4) { animation-delay: 0.24s; }
.hero-content > *:nth-child(5) { animation-delay: 0.30s; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { order: -1; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
/* ── MOBILE NAV OPEN STATE ── */
nav.nav-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.nav-open .hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 860px) {
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: 0; right: 0; top: 58px;
    background: rgba(247,245,240,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    z-index: 99;
    padding: 4px 0;
  }
  nav.nav-open .nav-links li { border-bottom: 1px solid var(--rule); }
  nav.nav-open .nav-links li:last-child { border-bottom: none; }
  nav.nav-open .nav-links a { display: block; padding: 14px 24px; font-size: 0.95rem; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .search-inner { flex-direction: column; align-items: stretch; }
  .search-inner label { display: none; }
  .compare-table th:nth-child(3), .compare-table td:nth-child(3),
  .compare-table th:nth-child(4), .compare-table td:nth-child(4) { display: none; }
}

/* ── Guide tabs ── */
.guide-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.guide-tab {
  padding: 8px 18px;
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.guide-tab:hover { border-color: var(--accent); color: var(--accent); }
.guide-tab--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ── Airport link in sidebar ── */
.airport-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.airport-link:hover { text-decoration: underline; }

/* ── Airport card meta line ── */
.cc-meta {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
