:root {
  --bg: #f5f1e8;
  --bg-soft: #faf7f2;
  --paper: #fffdf8;
  --paper-2: #fffaf1;
  --text: #172225;
  --muted: #5e675f;
  --line: #ddd6c8;
  --line-strong: #cfc3b0;
  --green: #0f6b4f;
  --green-deep: #0a4d39;
  --gold: #c59b53;
  --gold-soft: #f1e0ba;
  --shadow: 0 18px 44px rgba(19, 27, 24, 0.08);
  --shadow-soft: 0 12px 30px rgba(19, 27, 24, 0.05);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 107, 79, 0.06), transparent 24%),
    linear-gradient(180deg, #f8f4ec 0%, #f5f1e8 100%);
  color: var(--text);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

h1, h2, h3, h4 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}

.topbar {
  background: #10241d;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 16px; padding: 10px 0;
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 244, 236, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(207, 195, 176, 0.8);
}
.nav-shell {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
  gap: 24px; padding: 20px 0;
}
.brand-title { display: inline-block; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.04em; }
.brand-tag { margin: 2px 0 0; color: var(--muted); font-size: .94rem; }
.nav-links { display: flex; justify-content: center; gap: 28px; }
.nav-links a { font-weight: 700; color: #3c453e; position: relative; }
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px;
  background: var(--green); border-radius: 999px;
}
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; font-weight: 700;
  background: var(--text); color: #fff;
}
.mobile-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  border-radius: 14px; padding: 10px; width: 46px; height: 46px;
}
.mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--text); margin: 5px 0; }

.hero,
.page-hero {
  position: relative; overflow: hidden;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(15, 107, 79, 0.14), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(197, 155, 83, 0.14), transparent 20%);
  pointer-events: none;
}
.hero-grid,
.page-hero-grid,
.article-hero-grid {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 88px 0 64px;
}
.hero-grid { grid-template-columns: 1.02fr .98fr; }
.page-hero-grid { grid-template-columns: 1.08fr .92fr; align-items: end; }
.article-hero-grid { grid-template-columns: 1fr .92fr; align-items: stretch; }
.page-hero.compact { padding: 56px 0 28px; }
.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: .98;
  margin: 0 0 22px;
}
.hero-copy h1 span,
.page-hero h1 span { color: var(--green); }
.eyebrow,
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: .84rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-text,
.page-intro {
  font-size: 1.12rem; max-width: 760px; color: #33403a;
}
.hero-subtext { color: var(--muted); font-size: 1rem; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; border-radius: 18px; font-weight: 700;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--text); color: #fff; }
.btn-light { background: rgba(255,255,255,.72); color: var(--text); border-color: var(--line); backdrop-filter: blur(8px); }
.btn-green { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--text); }
.small { padding: 10px 14px; border-radius: 14px; font-size: .94rem; }

.search-card,
.newsletter-form {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(207, 195, 176, 0.9);
  border-radius: 24px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.search-card { max-width: 760px; }
.search-card input,
.newsletter-form input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-size: 1rem; color: var(--text);
}
.inline-search { margin-top: 24px; }
.chips,
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.chips { margin-top: 22px; }
.chips span,
.tags span {
  background: rgba(255,255,255,.74); border: 1px solid var(--line); padding: 8px 14px;
  border-radius: 999px; color: #49524d; font-size: .92rem; backdrop-filter: blur(8px);
}
.compact-tags { margin-top: 10px; }

.hero-visual {
  display: flex; flex-direction: column; gap: 18px;
}
.cover-story {
  display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden;
  border-radius: 34px; background: var(--paper); border: 1px solid rgba(207, 195, 176, 0.88);
  box-shadow: var(--shadow);
}
.cover-story-media {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(13,34,27,0.06), rgba(13,34,27,0.18)),
    linear-gradient(150deg, #d4ead9 0%, #7fb9a2 34%, #315e4d 100%);
}
.cover-story-body { padding: 28px; }
.cover-story-kicker,
.featured-label,
.card-label,
.article-index,
.footer-kicker,
.visual-tag {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800;
  color: var(--green);
}
.cover-story h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.02; margin: 10px 0 14px; }
.cover-story p { color: #48524b; }
.cover-story-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0;
}
.cover-story-stats div {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; padding: 14px;
}
.cover-story-stats strong { display: block; font-size: 1.35rem; }
.cover-story-stats span { color: var(--muted); font-size: .92rem; }
.story-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.story-card {
  min-height: 188px; border-radius: 28px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; justify-content: end; padding: 20px;
  color: #fff; box-shadow: var(--shadow-soft); isolation: isolate;
}
.story-card::before,
.destination-visual::before,
.destination-detail-visual::before,
.article-hero-card::before,
.guide-card-cover::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(9,18,15,.18) 38%, rgba(9,18,15,.62) 100%);
}
.story-card > * { position: relative; z-index: 1; }
.story-card strong { font-family: "Iowan Old Style", Georgia, serif; font-size: 1.45rem; line-height: 1.05; margin: 8px 0; }
.story-card span:last-child { font-size: .92rem; color: rgba(255,255,255,.88); }
.story-card-label,
.visual-tag { color: rgba(255,255,255,.84); }

.editorial-band { padding-top: 10px; }
.editorial-band-grid,
.intro-block,
.panel-white,
.hero-side-note,
.sidebar-card,
.wide-card,
.simple-card,
.card,
.faq-item,
.featured-article,
.article-item,
.destination-body,
.newsletter,
.article-callout,
.toc-card,
.essential-item,
.related-block,
.destination-detail,
.article-content,
.article-sidebar {
  background: rgba(255,253,248,0.82);
  border: 1px solid rgba(207, 195, 176, 0.88);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.editorial-band-grid,
.intro-block,
.panel-white,
.newsletter { padding: 28px; }
.editorial-band-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px;
}
.hero-side-note { padding: 28px; align-self: stretch; }
.hero-side-note h3 { margin: 8px 0 10px; font-size: 1.7rem; line-height: 1.08; }

.section { padding: 34px 0 42px; }
.section-head {
  display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 24px;
}
.section-head h2,
.intro-block h2,
.newsletter h2,
.faq-block h2,
.destination-detail-body h2,
.content-section h2,
.related-block h2 {
  font-size: clamp(2rem, 4vw, 3rem); line-height: .98; margin: 0;
}
.section-note { max-width: 470px; color: var(--muted); }
.section-link { font-weight: 700; color: var(--green-deep); }
.alert-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(90deg, rgba(232,245,237,.94), rgba(252,245,228,.94));
  border: 1px solid #d9d4bf; border-radius: 24px; padding: 18px 22px; box-shadow: var(--shadow-soft);
}
.alert-strip strong { color: var(--green-deep); }
.alert-strip span { color: #3e4a44; flex: 1; }
.alert-strip a { font-weight: 700; color: var(--green-deep); }

.cards { display: grid; gap: 20px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card,
.simple-card,
.featured-article,
.faq-item,
.sidebar-card,
.article-item,
.wide-card { padding: 24px; }
.card h3,
.simple-card h3,
.featured-article h3,
.faq-item h3,
.sidebar-card h3,
.wide-card h3,
.article-item h4,
.destination-body h3,
.destination-detail-body h2 {
  margin: 10px 0 12px; font-size: 1.48rem; line-height: 1.08;
}
.card p,
.simple-card p,
.featured-article p,
.faq-item p,
.sidebar-card p,
.wide-card p,
.article-item p,
.article-content p,
.destination-detail-body p,
.page-intro,
.hero-subtext { color: #49534d; }
.card a,
.wide-card a,
.sidebar-links a,
.article-item a,
.destination-body a,
.destination-detail-body a { font-weight: 700; color: var(--green-deep); }
.card-summary { color: var(--muted); margin-top: 10px; }
.cards-elevated .card { background: linear-gradient(180deg, rgba(255,253,248,.92), rgba(255,248,238,.88)); }
.icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px;
  background: linear-gradient(135deg, #eef6ef, #f6ead5); font-size: 1.5rem;
}

.feature-layout {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px;
}
.feature-spotlight {
  display: grid; grid-template-columns: .98fr 1.02fr; overflow: hidden;
  border-radius: 34px; background: rgba(255,253,248,0.86); border: 1px solid rgba(207,195,176,0.88); box-shadow: var(--shadow);
}
.feature-spotlight-media,
.guide-card-cover,
.article-hero-card,
.destination-visual,
.destination-detail-visual {
  position: relative; overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
}
.feature-spotlight-media { border-radius: 34px 0 0 34px; }
.feature-guide,
.guide-cover-preparer-voyage-algerie,
.guide-cover-ou-aller-pour-premier-sejour,
.guide-cover-retour-depart-algerie {
  background: linear-gradient(145deg, #cfe3d5 0%, #7aa98e 35%, #173f33 100%);
}
.guide-cover-visa-formalites-algerie { background: linear-gradient(145deg, #f6e8cf 0%, #d1b27e 34%, #7e5b22 100%); }
.guide-cover-internet-mobile-algerie { background: linear-gradient(145deg, #cfe9f6 0%, #79abc9 34%, #1f4f70 100%); }
.guide-cover-arriver-aeroport-alger,
.guide-cover-air-algerie-bagages-organisation { background: linear-gradient(145deg, #d9eef1 0%, #75c0ba 35%, #1f615d 100%); }
.guide-cover-traversee-maritime-algerie { background: linear-gradient(145deg, #d8eef5 0%, #72a9c9 35%, #20425b 100%); }
.guide-cover-sejour-alger-quartiers { background: linear-gradient(145deg, #efe2d5 0%, #c6a07c 35%, #6b4730 100%); }
.guide-cover-constantine-3-jours { background: linear-gradient(145deg, #e0eadf 0%, #80a07a 35%, #2e5140 100%); }
.guide-cover-ghardaia-sejour-culturel { background: linear-gradient(145deg, #f2dfc9 0%, #d4a368 35%, #815427 100%); }
.feature-spotlight-body { padding: 28px; }
.feature-side-list { display: grid; gap: 16px; }
.article-item-rich { background: linear-gradient(180deg, rgba(255,253,248,.94), rgba(254,249,242,.88)); }
.article-index { color: var(--muted); }

.panel-rich { padding: 28px; }

.destination,
.destination-detail {
  overflow: hidden;
}
.destination { border-radius: 30px; }
.destination-visual { min-height: 230px; border-radius: 30px 30px 0 0; }
.destination-body { border: none; border-radius: 0 0 30px 30px; box-shadow: none; padding: 24px; }
.destination-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.destination-head span { color: var(--gold); font-size: 1.2rem; }
.visual-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18);
}
.destination-detail {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; padding: 0;
}
.destination-detail-visual { border-radius: 30px 0 0 30px; min-height: 100%; }
.destination-detail-body { padding: 30px; border: none; border-radius: 0 30px 30px 0; box-shadow: none; }
.destination-subtitle { font-size: 1.12rem; color: #38443d; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 20px 0; }
.detail-grid h3 { font-size: 1rem; margin-bottom: 8px; }
.destination-stack { display: grid; gap: 22px; }

.destination-alger,
.destination-oran,
.destination-constantine,
.destination-ghardaia,
.destination-tamanrasset,
.destination-annaba,
.destination-tipaza,
.destination-bejaia {
  background-size: cover;
  background-position: center;
}
.destination-alger { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.5)), linear-gradient(135deg, #dfece5 0%, #7fb8a8 40%, #194f4e 100%); }
.destination-oran { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.55)), linear-gradient(135deg, #f5dfbf 0%, #d38f53 40%, #6c4121 100%); }
.destination-constantine { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.5)), linear-gradient(135deg, #dce6d9 0%, #8ba985 40%, #2f5342 100%); }
.destination-ghardaia { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.55)), linear-gradient(135deg, #f0e4d1 0%, #d0a06e 40%, #7e5326 100%); }
.destination-tamanrasset { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.55)), linear-gradient(135deg, #ead7c0 0%, #b57c47 40%, #633617 100%); }
.destination-annaba { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.55)), linear-gradient(135deg, #d7edf0 0%, #75b5be 40%, #215f63 100%); }
.destination-tipaza { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.55)), linear-gradient(135deg, #e4ead5 0%, #98b373 40%, #405427 100%); }
.destination-bejaia { background-image: linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.55)), linear-gradient(135deg, #d9eaf7 0%, #73a6d6 40%, #24406d 100%); }

.article-page {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start;
}
.article-content,
.article-sidebar { padding: 0; background: transparent; border: none; box-shadow: none; backdrop-filter: none; }
.article-hero-card { min-height: 320px; border-radius: 34px; box-shadow: var(--shadow); }
.article-hero-card-overlay {
  position: absolute; inset: auto 22px 22px 22px; z-index: 2;
  padding: 20px; border-radius: 24px; background: rgba(16,24,20,.62); color: #fff; backdrop-filter: blur(10px);
}
.article-hero-card-overlay.light-overlay { background: rgba(255,255,255,.18); color: #fff; }
.article-hero-card-overlay.light-overlay p { color: rgba(255,255,255,.9); }
.article-hero-card-overlay .card-label { color: rgba(255,255,255,.85); }
.guide-intro { display: grid; gap: 18px; margin-bottom: 22px; }
.toc-card,
.article-callout,
.essential-item,
.content-section,
.sidebar-card,
.related-block {
  padding: 24px;
}
.essentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 18px 0; }
.essential-item strong { display: block; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.12rem; }
.toc-list,
.bullet-list,
.sidebar-links {
  margin: 0; padding-left: 18px;
}
.bullet-list li,
.sidebar-links li,
.toc-list li { margin: 0 0 10px; }
.sidebar-links { padding-left: 16px; }
.article-callout.soft { background: linear-gradient(180deg, rgba(240,248,242,.96), rgba(255,253,248,.9)); }
.article-callout.warn { background: linear-gradient(180deg, rgba(255,246,230,.98), rgba(255,253,248,.9)); }
.content-section {
  margin-bottom: 18px;
}
.content-section p + p { margin-top: 16px; }
.related-block { margin-top: 26px; }

.guide-grid .wide-card { display: block; }
.guide-card-premium { position: relative; overflow: hidden; }
.guide-card-cover { min-height: 180px; margin: -24px -24px 20px; border-radius: 28px 28px 0 0; }

.faq-block { background: transparent; padding: 0; border: none; box-shadow: none; }
.faq-list { display: grid; gap: 16px; }
.faq-note { color: var(--muted); font-size: .94rem; }
.newsletter {
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  background: linear-gradient(135deg, #0f2d25 0%, #13563f 52%, #b68b42 160%);
  color: #fff; border: none; box-shadow: var(--shadow);
}
.newsletter p,
.newsletter .section-kicker { color: rgba(255,255,255,.88); }
.newsletter-form { min-width: 340px; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); }
.newsletter-form input { color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.7); }
.light { color: rgba(255,255,255,.84); }

.site-footer {
  margin-top: 30px;
  background: #10241d;
  color: rgba(255,255,255,.82);
}
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px;
  padding: 54px 0 28px;
}
.footer-top h3,
.footer-top h4 { margin: 0 0 14px; }
.footer-top h3 { font-size: 2rem; color: #fff; }
.footer-top h4 { font-size: 1rem; color: rgba(255,255,255,.95); }
.footer-top ul { list-style: none; padding: 0; margin: 0; }
.footer-top li { margin-bottom: 10px; }
.footer-top a { color: rgba(255,255,255,.78); }
.footer-top a:hover { color: #fff; }
.footer-note { color: rgba(255,255,255,.62); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0 26px;
  display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.62);
}

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: auto auto auto; }
  .nav-links { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .hero-grid,
  .page-hero-grid,
  .article-hero-grid,
  .feature-layout,
  .destination-detail,
  .article-page,
  .footer-top,
  .editorial-band-grid,
  .newsletter,
  .cover-story {
    grid-template-columns: 1fr;
  }
  .story-strip,
  .cards-4,
  .cards-3,
  .cards-2,
  .detail-grid,
  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-detail-visual,
  .feature-spotlight-media { border-radius: 30px 30px 0 0; min-height: 260px; }
  .destination-detail-body,
  .feature-spotlight-body { border-radius: 0 0 30px 30px; }
  .cover-story-media { min-height: 260px; }
}

@media (max-width: 760px) {
  .topbar-inner,
  .section-head,
  .footer-bottom,
  .alert-strip,
  .hero-actions,
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-shell {
    grid-template-columns: auto auto;
    gap: 16px;
  }
  .nav-cta { display: none; }
  .mobile-toggle { display: inline-block; justify-self: end; }
  .nav-links {
    display: none; grid-column: 1 / -1; flex-direction: column; width: 100%;
    background: rgba(255,253,248,.94); border: 1px solid var(--line); border-radius: 20px; padding: 16px;
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .page-hero-grid,
  .article-hero-grid { padding: 64px 0 42px; }
  .hero-copy h1,
  .page-hero h1 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
  .story-strip,
  .cards-4,
  .cards-3,
  .cards-2,
  .detail-grid,
  .essentials-grid,
  .cover-story-stats {
    grid-template-columns: 1fr;
  }
  .search-card,
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .article-hero-card { min-height: 260px; }
  .guide-card-cover { min-height: 150px; }
  .destination-visual { min-height: 210px; }
  .destination-detail-body,
  .card,
  .simple-card,
  .featured-article,
  .faq-item,
  .sidebar-card,
  .article-item,
  .wide-card,
  .panel-white,
  .intro-block,
  .editorial-band-grid,
  .newsletter,
  .article-callout,
  .toc-card,
  .essential-item,
  .content-section,
  .related-block {
    padding: 20px;
  }
}

/* ---- Enhancement layer ---- */
html { scroll-behavior: smooth; }
body { overflow-wrap: break-word; }
:focus-visible {
  outline: 3px solid rgba(15, 94, 67, .28);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -50px;
  z-index: 1000;
  background: var(--text);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 248, .88);
  border-bottom: 1px solid rgba(207, 195, 176, 0.72);
}
.topbar { position: relative; z-index: 51; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .94rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--green); }

.trust-grid,
.method-grid,
.method-steps,
.detail-grid,
.chip-filter,
.trust-pill-group,
.article-toolbar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.method-grid {
  align-items: stretch;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.method-copy { flex: 1 1 320px; }
.method-steps { flex: 1 1 520px; }
.method-step {
  flex: 1 1 180px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.method-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(15, 107, 79, .08);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 18px;
}
.trust-card { min-height: 100%; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 79, .08);
  color: var(--green);
  font-weight: 700;
  font-size: .88rem;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(207, 195, 176, 0.72);
  vertical-align: top;
}
.compare-table th {
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  background: rgba(15, 107, 79, 0.04);
}
.compare-note,
.result-count,
.source-meta {
  color: var(--muted);
  font-size: .95rem;
}
.result-count { font-weight: 600; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--text);
  font-size: .94rem;
}
.filter-chip.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.source-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 107, 79, .09);
  color: var(--green);
  font-weight: 700;
}
.article-toolbar {
  margin-top: 18px;
  align-items: center;
}

.faq-item {
  border-radius: 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green);
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding-top: 14px; }

.cta-panel {
  background: linear-gradient(145deg, #12261f 0%, #0f5e43 100%);
  color: #fff;
  border-radius: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.cta-panel p,
.cta-panel .section-kicker { color: rgba(255,255,255,.88); }
.cta-panel .btn-light { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.18); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--text);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: 1fr; }
  .method-grid,
  .cta-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .breadcrumbs { margin-bottom: 18px; }
  .article-toolbar,
  .chip-filter,
  .trust-pill-group { flex-direction: column; align-items: flex-start; }
  .compare-table { min-width: 640px; }
  .cta-panel { padding: 24px; }
}

@media print {
  .topbar,
  .site-header,
  .site-footer,
  .back-to-top,
  .mobile-toggle,
  .hero-actions,
  .search-card,
  .chip-filter,
  .ghost-button { display: none !important; }
  body { background: #fff; color: #000; }
  .hero,
  .page-hero,
  .section { padding: 0; }
  .content-section,
  .article-callout,
  .toc-card,
  .essential-item,
  .sidebar-card { box-shadow: none; border: 1px solid #ddd; }
}

/* ---- Premium photo layer ---- */
.cover-story-media,
.feature-guide,
.destination-alger,
.destination-oran,
.destination-constantine,
.destination-ghardaia,
.destination-tamanrasset,
.destination-tipaza,
.article-hero-card,
.guide-card-cover,
.destination-visual,
.destination-detail-visual {
  background-size: cover;
  background-repeat: no-repeat;
}

.cover-story-media,
.feature-guide,
.guide-cover-preparer-voyage-algerie,
.guide-cover-arriver-aeroport-alger,
.guide-cover-air-algerie-bagages-organisation,
.guide-cover-sejour-alger-quartiers,
.guide-cover-visa-formalites-algerie,
.guide-cover-internet-mobile-algerie,
.guide-cover-retour-depart-algerie {
  background-image:
    linear-gradient(180deg, rgba(8, 17, 16, .08), rgba(8, 17, 16, .42)),
    url('assets/images/alger-original.webp');
  background-position: center center;
}

.guide-cover-traversee-maritime-algerie {
  background-image:
    linear-gradient(180deg, rgba(8, 17, 16, .08), rgba(8, 17, 16, .40)),
    url('assets/images/oran-original.webp');
  background-position: center 34%;
}

.guide-cover-ou-aller-pour-premier-sejour,
.guide-cover-constantine-3-jours {
  background-image:
    linear-gradient(180deg, rgba(8, 17, 16, .10), rgba(8, 17, 16, .48)),
    url('assets/images/constantine-original.webp');
  background-position: center 58%;
}

.guide-cover-ghardaia-sejour-culturel {
  background-image:
    linear-gradient(180deg, rgba(8, 17, 16, .06), rgba(8, 17, 16, .44)),
    url('assets/images/ghardaia-original.webp');
  background-position: center center;
}

.destination-alger {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, .08), rgba(7, 19, 18, .56)),
    url('assets/images/alger-original.webp');
  background-position: center center;
}

.destination-oran {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, .08), rgba(7, 19, 18, .58)),
    url('assets/images/oran-original.webp');
  background-position: center 30%;
}

.destination-constantine {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, .08), rgba(7, 19, 18, .58)),
    url('assets/images/constantine-original.webp');
  background-position: center 58%;
}

.destination-ghardaia {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, .08), rgba(7, 19, 18, .56)),
    url('assets/images/ghardaia-original.webp');
  background-position: center center;
}

.destination-tamanrasset {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, .06), rgba(7, 19, 18, .52)),
    url('assets/images/tamanrasset-original.webp');
  background-position: center center;
}

.destination-tipaza {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, .08), rgba(7, 19, 18, .52)),
    url('assets/images/tipaza-original.webp');
  background-position: center center;
}

.story-card,
.article-hero-card,
.destination-visual,
.destination-detail-visual,
.feature-spotlight-media,
.cover-story-media {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.page-hero-rich,
.article-hero {
  position: relative;
}

.page-hero-rich::after,
.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(182, 139, 66, .10), transparent 28%);
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.credit-card {
  position: relative;
  overflow: hidden;
}

.credit-card h3 {
  margin-bottom: 10px;
}

.credit-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.credit-meta p {
  margin: 0;
}

.credit-note {
  margin-top: 14px;
  color: var(--muted);
}

.credit-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: #49524d;
  font-size: .9rem;
}

@media (max-width: 760px) {
  .credits-grid {
    grid-template-columns: 1fr;
  }
}


/* ---- Original visual system ---- */
.cover-story-media,
.feature-guide,
.story-card,
.article-hero-card,
.destination-visual,
.destination-detail-visual {
  position: relative;
  overflow: hidden;
}

.cover-story-media::before,
.feature-guide::before,
.story-card::before,
.article-hero-card::before,
.destination-visual::before,
.destination-detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(8,17,16,.18));
  mix-blend-mode: screen;
  pointer-events: none;
}

.story-card::after,
.article-hero-card::after,
.destination-visual::after,
.destination-detail-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,240,210,.26), rgba(255,240,210,0));
  pointer-events: none;
}


/* ---- Luxe editorial expansion ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14) 0, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 82%, rgba(255,255,255,.14) 100%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 22%);
  opacity: .4;
}

.section-immersive { padding-top: 22px; }
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.magazine-card,
.journal-feature,
.editor-note {
  background: rgba(255,253,248,.84);
  border: 1px solid rgba(207, 195, 176, 0.88);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.magazine-figure,
.journal-feature-media,
.editor-note-media,
.credit-visual {
  min-height: 280px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  isolation: isolate;
}
.magazine-figure::before,
.journal-feature-media::before,
.editor-note-media::before,
.credit-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 13, 0.06), rgba(7, 14, 13, 0.42)),
    radial-gradient(circle at top right, rgba(226,196,140,.22), transparent 30%);
}
.magazine-copy,
.journal-feature-body,
.editor-note-body,
.credit-visual-body {
  padding: 24px 24px 26px;
}
.magazine-copy h3,
.journal-feature-body h2,
.editor-note-body h3,
.credit-visual-body h3 {
  margin: 10px 0 12px;
}
.magazine-copy p,
.journal-feature-body p,
.editor-note-body p,
.credit-visual-body p { color: #45524a; }
.magazine-copy a,
.journal-feature-body a,
.editor-note-body a,
.credit-visual-body a { font-weight: 700; color: var(--green-deep); }

.journal-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}
.journal-feature-media { min-height: 360px; }
.journal-side {
  display: grid;
  gap: 22px;
}
.editor-note-media { min-height: 200px; }
.editorial-micro {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.editorial-micro div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: start;
}
.editorial-micro strong {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(226,196,140,.32), rgba(226,196,140,.12));
  border: 1px solid rgba(197,155,83,.22);
  font-size: 1.1rem;
}
.editorial-micro span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
}
.section-darkband {
  background: linear-gradient(180deg, rgba(19,38,36,.95), rgba(12,29,28,.96));
  color: #f5f0e3;
}
.section-darkband .section-head h2,
.section-darkband .section-note,
.section-darkband .card-label { color: inherit; }
.section-darkband .wide-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: #f4efe2;
}
.section-darkband .wide-card p,
.section-darkband .wide-card a { color: rgba(245,240,227,.88); }

.visual-atlas {
  background-image:
    linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.52)),
    url('assets/images/editorial-atlas.webp');
}
.visual-arrival {
  background-image:
    linear-gradient(180deg, rgba(7,19,18,.08), rgba(7,19,18,.48)),
    url('assets/images/arrival-notes.webp');
}
.visual-desert {
  background-image:
    linear-gradient(180deg, rgba(7,19,18,.06), rgba(7,19,18,.52)),
    url('assets/images/desert-notebook.webp');
}

.destination-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.destination-gallery-card {
  display: grid;
  gap: 0;
}
.destination-gallery-card .magazine-figure { min-height: 230px; }
.destination-gallery-card .magazine-copy { padding-top: 20px; }

.credit-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1100px) {
  .magazine-grid,
  .destination-grid-premium,
  .credit-visual-grid,
  .journal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .magazine-copy,
  .journal-feature-body,
  .editor-note-body,
  .credit-visual-body { padding: 20px; }
  .magazine-figure,
  .credit-visual,
  .journal-feature-media { min-height: 230px; }
  .editorial-micro div { grid-template-columns: 1fr; }
}
