/* ─────────────────────────────────────────────────────────────────────────────
   guide.css — «تجارب مَن زاروا ألبانيا» page (route /guide).
   Scoped to .view-guide. Reuses the app's design tokens (style.css) so light/
   dark and the Thmanyah type come for free. Photographic, editorial, RTL.
   ───────────────────────────────────────────────────────────────────────────── */

.view-guide {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 18px 80px;
}

/* Shared bits ------------------------------------------------------------- */
.g-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.g-eyebrow.is-on-photo {
  color: rgba(255, 255, 255, 0.85);
}
.g-section {
  margin-top: 40px;
}
.g-sec-head {
  margin-bottom: 18px;
}
.g-sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.g-sec-sub {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  max-width: 60ch;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.g-hero {
  padding-top: 4px;
}
.g-hero-media {
  position: relative;
  margin: 0;
  min-height: min(58vh, 440px);
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.g-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.06);
  animation: gHeroIn 1.3s cubic-bezier(0.16, 0.84, 0.34, 1) both;
}
@keyframes gHeroIn {
  to {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .g-hero-img {
    animation: none;
    transform: none;
  }
}
.g-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(8, 10, 9, 0.9) 0%,
    rgba(8, 10, 9, 0.55) 36%,
    rgba(8, 10, 9, 0.12) 66%,
    rgba(8, 10, 9, 0.3) 100%
  );
}
.g-hero-copy {
  padding: 24px 20px 24px;
}
.g-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}
.g-lede {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 2.6vw, 1.1rem);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 54ch;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}
.g-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
}
.g-chip-ico {
  display: inline-flex;
  width: 15px;
  height: 15px;
}
.g-chip-ico svg {
  width: 100%;
  height: 100%;
}

/* ── Entry banner on the decision page (intro.js) ─────────────────────────── */
.dec-guide-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--brand) 12%, var(--surface)) 0%,
    var(--surface) 60%
  );
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line));
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.1s;
}
.dec-guide-link:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  box-shadow: var(--shadow);
}
.dec-guide-link:active {
  transform: scale(0.995);
}
.dec-guide-kicker {
  grid-column: 1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
}
.dec-guide-title {
  grid-column: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3.6vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
}
.dec-guide-sub {
  grid-column: 1;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 2px;
}
.dec-guide-arrow {
  grid-column: 2;
  grid-row: 1 / 4;
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--brand);
}
.dec-guide-arrow svg {
  width: 100%;
  height: 100%;
}

/* ── City cards (the decision spine) ──────────────────────────────────────── */
.g-cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 680px) {
  .g-cities {
    grid-template-columns: 1fr 1fr;
  }
}
.g-city {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.g-city-media {
  position: relative;
  aspect-ratio: 16 / 10;
  isolation: isolate;
}
.g-city-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.g-city-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.3) 42%,
    rgba(0, 0, 0, 0.02) 70%
  );
}
.g-city-cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 14px 16px 13px;
  z-index: 1;
}
.g-city-name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.g-city-en {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}
.g-city-nights {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 20, 24, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}
.g-city-nights.is-plain {
  position: static;
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--brand);
}
.g-city-nights-ico {
  display: inline-flex;
  width: 15px;
  height: 15px;
}
.g-city-nights-ico svg {
  width: 100%;
  height: 100%;
}
/* Text-only city (no photo) */
.g-city-noimg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 4px;
}
.g-city-noimg .g-city-name {
  color: var(--ink);
  text-shadow: none;
}
.g-city-noimg .g-city-en {
  color: var(--muted);
}
.g-city-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-city-role {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  padding: 4px 10px;
  border-radius: 999px;
}
.g-city-why {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.7;
}
.g-picks {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.g-pick {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink);
}
.g-pick-ico {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--brand);
}
.g-pick-ico svg {
  width: 100%;
  height: 100%;
}

/* ── Warning callout (Boge/Boga etc.) ─────────────────────────────────────── */
.g-warn {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink);
}
.g-warn-ico {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--gold);
}
.g-warn-ico svg {
  width: 100%;
  height: 100%;
}

/* ── Getting-around panels ────────────────────────────────────────────────── */
.g-move {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .g-move {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}
.g-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.g-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.g-panel-ico {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--brand);
}
.g-panel-ico svg {
  width: 100%;
  height: 100%;
}
.g-panel-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.g-panel-lead {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.g-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
}
.g-check-ico {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--brand);
}
.g-check-ico svg {
  width: 100%;
  height: 100%;
}

/* ── Tips ─────────────────────────────────────────────────────────────────── */
.g-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 620px) {
  .g-tips {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 920px) {
  .g-tips {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.g-tip {
  display: flex;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 15px;
}
.g-tip-ico {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.g-tip-ico svg {
  width: 100%;
  height: 100%;
}
.g-tip-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1px 0 4px;
}
.g-tip-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ── Reports ──────────────────────────────────────────────────────────────── */
.g-corpus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.g-corpus-stat {
  flex: 1 1 140px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
}
.g-corpus-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}
.g-corpus-stat span {
  font-size: 0.78rem;
  color: var(--muted);
}
.g-report-hint {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: var(--muted);
}
.g-reports {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 760px) {
  .g-reports {
    grid-template-columns: 1fr 1fr;
  }
}
.g-report {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
}
.g-report:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.g-report:active {
  transform: scale(0.99);
}
.g-report.is-featured {
  border-inline-start: 3px solid var(--gold);
}
.g-report-main {
  flex: 1 1 auto;
  min-width: 0;
}
.g-report-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.g-report-star {
  display: inline-flex;
  width: 15px;
  height: 15px;
  color: var(--gold);
}
.g-report-star svg {
  width: 100%;
  height: 100%;
}
.g-report-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.g-report-when {
  font-size: 0.74rem;
  color: var(--muted);
}
.g-report-best {
  display: block;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.g-report-arrow {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.g-report-arrow svg {
  width: 100%;
  height: 100%;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.g-footer {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.g-footer-disclaimer {
  margin: 0 0 16px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 70ch;
}
.g-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand);
}
.g-back-ico {
  display: inline-flex;
  width: 18px;
  height: 18px;
  /* arrowNext points to the page edge; in RTL that's already "back". */
}
.g-back-ico svg {
  width: 100%;
  height: 100%;
}

/* ── Per-report bottom-sheet ──────────────────────────────────────────────── */
.g-sheet {
  padding-bottom: 4px;
}
.g-sheet-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.g-badge.is-star {
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 14%, transparent);
}
.g-badge-ico {
  display: inline-flex;
  width: 12px;
  height: 12px;
}
.g-badge-ico svg {
  width: 100%;
  height: 100%;
}
.g-sheet-when {
  font-size: 0.78rem;
  color: var(--muted);
}
.g-sheet-best {
  margin: 0 0 16px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.g-rsec {
  margin-bottom: 16px;
}
.g-rsec-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.g-ritems {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-ritem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
}
.g-ritem-main {
  flex: 1 1 auto;
  min-width: 0;
}
.g-ritem-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
}
.g-ritem-phone {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--muted);
  direction: ltr;
  text-align: end;
}
.g-maps {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.g-maps:hover {
  background: color-mix(in srgb, var(--brand) 16%, transparent);
}
.g-maps-ico {
  display: inline-flex;
  width: 14px;
  height: 14px;
}
.g-maps-ico svg {
  width: 100%;
  height: 100%;
}
.g-sheet-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.g-sheet-foot-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}
.g-tg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
}
.g-tg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}
.g-tg-ico {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #229ed9;
}
.g-tg-ico svg {
  width: 100%;
  height: 100%;
}
.g-sheet-note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted);
}
