:root {
  --ink: #18211f;
  --muted: #64706b;
  --paper: #f8f5ed;
  --soft: #eef5f2;
  --white: #ffffff;
  --line: #ded8ca;
  --teal: #0b6f6a;
  --teal-dark: #073f3d;
  --gold: #c69238;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.seo-header,
.seo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--ink);
  text-decoration: none;
}

.seo-brand img {
  width: 116px;
  height: auto;
  display: block;
}

.seo-brand span {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--muted);
}

.seo-header nav,
.seo-footer {
  flex-wrap: wrap;
}

.seo-header nav,
.seo-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-header a,
.seo-footer a {
  text-decoration: none;
}

.seo-nav-cta {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
}

.seo-article {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.seo-hero,
.cta-panel,
.summary-box,
.related-grid a,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.seo-hero {
  padding: clamp(28px, 6vw, 64px);
  background:
    linear-gradient(110deg, rgba(7, 63, 61, 0.94), rgba(11, 111, 106, 0.72)),
    url("/assets/current/israel-panorama.jpg") center/cover;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6.6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 22px;
  margin-top: 36px;
}

.content-grid > div,
.seo-section {
  padding: 28px 0;
}

.content-grid p,
.seo-section p,
.cta-panel p,
.faq-list p,
.related-grid span {
  color: var(--muted);
  line-height: 1.72;
}

.content-grid p + p,
.seo-section p + p {
  margin-top: 14px;
}

.summary-box {
  align-self: start;
  padding: 22px;
}

.summary-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
}

.summary-box ul,
.steps {
  margin: 0;
  padding-left: 20px;
}

.summary-box li,
.steps li {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 16px 0 26px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--soft);
}

.cta-panel .button.secondary {
  color: var(--teal);
  border-color: var(--teal);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.faq-list p {
  margin-top: 10px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.related-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
}

.related-grid strong {
  color: var(--teal-dark);
}

.seo-footer {
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .seo-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-header nav {
    width: 100%;
  }

  .content-grid,
  .cta-panel,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    width: 100%;
  }
}
