/* ===== Visit Belarus — style.css ===== */
:root {
  /* Palette drawn from the Belarusian flag: red and green with white,
     plus a straw-gold nod to the national straw-weaving craft. */
  --red: #c8102e;
  --red-bright: #e02b3d;
  --red-deep: #9e0c22;
  --forest-deep: #0a2a1c;
  --forest: #14603c;
  --forest-mid: #1f8a52;
  --meadow: #eef5ef;
  --cream: #faf6ec;
  --gold: #e9b44c;
  --gold-deep: #c98f2b;
  --ink: #1c2420;
  --ink-soft: #4c5a53;
  --line: #dde7df;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11, 36, 27, 0.10);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 36, 27, 0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.brand strong { font-weight: 700; }
.brand-mark { width: 22px; height: 22px; color: var(--gold); }
.nav-links {
  display: flex;
  gap: 1.6rem;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--cream);
  background: var(--forest-deep);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 36, 27, 0.72) 0%,
    rgba(11, 36, 27, 0.45) 45%,
    rgba(11, 36, 27, 0.82) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem 3rem;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 .accent { color: var(--red-bright); font-style: italic; }
.hero-sub {
  max-width: 560px;
  margin: 1.2rem auto 2rem;
  font-size: 1.12rem;
  opacity: 0.92;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--red-bright); }
.btn-ghost {
  border: 1.5px solid rgba(250, 246, 236, 0.6);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }

.hero-stats {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.hero-stats div {
  background: rgba(250, 246, 236, 0.08);
  border: 1px solid rgba(250, 246, 236, 0.15);
  border-radius: var(--radius);
  padding: 1.1rem 0.8rem;
  backdrop-filter: blur(4px);
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
}
.hero-stats span { font-size: 0.82rem; opacity: 0.85; }

/* ===== Sections ===== */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.section-alt {
  max-width: none;
  background: var(--meadow);
}
.section-alt > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.section-alt {
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.7rem;
}
.section-head h2, .split-text h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  color: var(--forest-deep);
  max-width: 720px;
  margin: 0 auto;
}
.split-text h2 { margin: 0 0 1rem; }
.section-sub {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 36, 27, 0.16);
}
.card-art {
  height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.card-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.card:hover .card-art img { transform: scale(1.06); }
.card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,36,27,0) 45%, rgba(11,36,27,0.72) 100%);
}
.card-art span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.card-body { padding: 1.3rem 1.4rem 1.6rem; }
.card-body h3 { font-size: 1.22rem; color: var(--forest-deep); margin-bottom: 0.5rem; }
.card-body p { font-size: 0.93rem; color: var(--ink-soft); }
.badge {
  display: inline-block;
  vertical-align: middle;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  transform: translateY(-2px);
}

/* ===== Split (Nature) ===== */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.split-text p { color: var(--ink-soft); }
.feature-list {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}
.feature-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
}
.feature-list strong { color: var(--ink); }
.nature-photo {
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 8 / 7;
  object-fit: cover;
}

/* ===== Food ===== */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.food {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.food:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.food-img {
  height: 160px;
  overflow: hidden;
}
.food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.food:hover .food-img img { transform: scale(1.06); }
.food-body { padding: 1.1rem 1.3rem 1.4rem; }
.food h3 { font-size: 1.15rem; color: var(--forest-deep); margin-bottom: 0.45rem; }
.food p { font-size: 0.9rem; color: var(--ink-soft); }

.culture-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.culture-strip > div {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
}
.culture-strip h3 { color: var(--gold); font-size: 1.25rem; margin-bottom: 0.6rem; }
.culture-strip p { font-size: 0.94rem; opacity: 0.92; }

/* ===== Only in Belarus (experiences) ===== */
.exp-section {
  background: linear-gradient(180deg, var(--forest-deep), #123a26);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.exp-section > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.exp-section .section-head h2 { color: var(--cream); }
.exp-section .eyebrow { color: var(--red-bright); }
.exp-section .section-sub { color: rgba(250, 246, 236, 0.8); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.2rem;
}
.exp-card {
  background: rgba(250, 246, 236, 0.07);
  border: 1px solid rgba(250, 246, 236, 0.16);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.exp-card:hover { border-color: rgba(233, 180, 76, 0.55); }
.exp-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.exp-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; color: var(--cream); }
.exp-card p { font-size: 0.9rem; opacity: 0.85; flex: 1; }
.exp-card a {
  margin-top: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}
.exp-card a:hover { text-decoration: underline; }

/* ===== My Trip ===== */
.nav-trip { color: var(--gold) !important; white-space: nowrap; }

.save-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  background: none;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  margin-top: 0.9rem;
}
.save-btn:hover { transform: translateY(-1px); }
.save-btn.saved { background: var(--red); color: #fff; }
.save-btn-big {
  font-size: 0.95rem;
  padding: 0.55rem 1.3rem;
  margin-top: 1.1rem;
  background: rgba(250, 246, 236, 0.12);
  border-color: var(--cream);
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.save-btn-big.saved { background: var(--red); border-color: var(--red); color: #fff; }

.trip-controls {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.6rem;
}
.trip-controls input[type="text"] {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  flex: 1;
  min-width: 200px;
}
.trip-controls .btn { padding: 0.55rem 1.2rem; font-size: 0.88rem; }
.btn-quiet {
  background: none;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
}
.btn-quiet:hover { border-color: var(--red); color: var(--red); }

.trip-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin-bottom: 0.9rem;
  align-items: start;
}
.trip-item img {
  width: 96px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
}
.trip-item h3 { font-size: 1.08rem; margin: 0 0 0.15rem; }
.trip-item h3 a { color: var(--forest-deep); text-decoration: none; }
.trip-item h3 a:hover { color: var(--red); }
.trip-item .trip-type { font-size: 0.75rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.trip-note {
  width: 100%;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  resize: vertical;
  min-height: 2.2rem;
}
.trip-item-btns { display: flex; flex-direction: column; gap: 0.3rem; }
.trip-item-btns button {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.trip-item-btns button:hover { border-color: var(--red); color: var(--red); }

.share-banner {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.share-banner p { margin: 0 !important; font-size: 0.95rem; color: var(--cream) !important; }
.share-banner strong { color: var(--gold) !important; }

@media print {
  .nav, .plan-nav, .page-hero, .footer, .ornament, .back-strip,
  .trip-controls .btn, .trip-controls .btn-quiet, .trip-item-btns, #trip-add, .share-banner { display: none !important; }
  body { background: #fff; }
  .trip-item { break-inside: avoid; border: 1px solid #ccc; }
}

@media (max-width: 600px) {
  .trip-item { grid-template-columns: 72px 1fr; }
  .trip-item-btns { flex-direction: row; grid-column: 1 / -1; }
}

/* ===== Facts band ===== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
}
.fact strong { color: var(--forest-deep); display: block; margin-bottom: 0.25rem; }
.fact p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ===== Map facade (click-to-load) ===== */
.map-facade {
  margin-top: 2.5rem;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--meadow);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 2rem 1.5rem;
}
.page-wrap .map-facade { margin-top: 1rem; margin-bottom: 0.5rem; }
.map-facade p { margin: 0 !important; color: var(--forest-deep); font-weight: 600; }
.map-facade .map-note {
  font-size: 0.78rem !important;
  color: var(--ink-soft) !important;
  font-weight: 400 !important;
  opacity: 0.8;
}

/* ===== Map embed ===== */
.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2.5rem;
  display: block;
}
.page-wrap .map-embed { height: 320px; margin-top: 1rem; margin-bottom: 0.5rem; }

/* ===== Footer columns ===== */
.footer-cols {
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer-cols h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-cols ul { list-style: none; display: grid; gap: 0.45rem; }
.footer-cols a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.8;
}
.footer-cols a:hover { opacity: 1; }

/* ===== Resources ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.resources-grid h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest-deep);
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.5rem;
  margin-bottom: 0.9rem;
}

/* ===== Itineraries ===== */
.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.itin {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}
.itin-featured {
  background: var(--forest-deep);
  color: var(--cream);
}
.itin-featured h3 { color: var(--cream); }
.itin-featured ol { color: rgba(250,246,236,0.85); }
.itin-days {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.itin h3 { font-size: 1.35rem; color: var(--forest-deep); margin-bottom: 0.9rem; }
.itin ol {
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
  display: grid;
  gap: 0.45rem;
}

/* ===== Plan ===== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.plan-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.plan-item h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.plan-item p { font-size: 0.92rem; color: var(--ink-soft); }

.plan-links {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
}
.plan-links a {
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}
.plan-links a:hover { color: var(--red); }
.plan-links li::before { content: "→ "; color: var(--red); }

/* Season tabs */
.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.2rem 0 0.8rem;
}
.season-btn {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.season-btn:hover { border-color: var(--gold); }
.season-btn.active {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream);
}

/* Currency converter */
.conv-intro { margin-bottom: 0.8rem; }
.converter {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.converter input,
.converter select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
}
.converter input { width: 6.5rem; }
.converter input:focus,
.converter select:focus { outline: 2px solid var(--red); border-color: var(--red); }
#conv-swap {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font-size: 1rem;
  cursor: pointer;
  color: var(--forest);
}
#conv-swap:hover { border-color: var(--gold); }
.conv-result {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  color: var(--forest-deep) !important;
  font-weight: 700;
}
.conv-note {
  margin-top: 0.3rem;
  font-size: 0.75rem !important;
  opacity: 0.7;
}

/* Phrasebook */
.phrasebook {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.3rem;
}
.phrasebook td {
  padding: 0.42rem 0.3rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
.phrasebook td:first-child { color: var(--ink); font-weight: 500; white-space: nowrap; }
.phrasebook td:nth-child(2) { color: var(--forest); font-weight: 500; }
.phrasebook tr:last-child td { border-bottom: none; }
.phrasebook em { font-style: italic; opacity: 0.75; font-size: 0.82rem; }
.disclaimer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
}
.cta-band h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin-bottom: 0.8rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.8rem; }

/* ===== Footer ===== */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  border-top: 1px solid rgba(250,246,236,0.12);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-inner p {
  max-width: 380px;
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 0.7rem;
}
.footer nav { display: grid; gap: 0.5rem; }
.footer nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer nav a:hover { opacity: 1; }
.footer-note {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.55;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-note a { color: var(--gold); text-decoration: none; }
.footer-note a:hover { text-decoration: underline; }
.photo-credits {
  max-width: 1180px;
  margin: 0 auto 1.2rem;
  font-size: 0.8rem;
  opacity: 0.75;
}
.photo-credits summary {
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.photo-credits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.3rem 1.5rem;
  padding: 0.4rem 0 0;
}
.photo-credits a { color: var(--gold); text-decoration: none; }
.photo-credits a:hover { text-decoration: underline; }

/* ===== Sub-pages (plan/*) ===== */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--forest-deep);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,36,27,0.55) 0%, rgba(11,36,27,0.85) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2.2rem;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: 0.4rem;
}
.page-hero p { max-width: 620px; opacity: 0.92; }

.plan-nav {
  background: var(--forest-deep);
  border-top: 1px solid rgba(250,246,236,0.14);
  padding: 0.8rem 1.5rem;
  overflow-x: auto;
}
.plan-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
}
.plan-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(250,246,236,0.25);
  opacity: 0.85;
}
.plan-nav a:hover { opacity: 1; border-color: var(--gold); }
.plan-nav a.current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  opacity: 1;
  font-weight: 600;
}

.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.prose h2 {
  font-size: 1.7rem;
  color: var(--forest-deep);
  margin: 2.4rem 0 0.8rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.18rem;
  color: var(--forest-deep);
  margin: 1.6rem 0 0.5rem;
}
.prose p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.3rem; margin-bottom: 0.9rem; display: grid; gap: 0.4rem; }
.prose a { color: var(--forest); font-weight: 500; }
.prose strong { color: var(--ink); }

.tip-box {
  background: var(--meadow);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.3rem;
  margin: 1.4rem 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.tip-box strong { color: var(--forest-deep); }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
}
.info-table th {
  text-align: left;
  font-weight: 600;
  color: var(--forest-deep);
  padding: 0.55rem 0.6rem;
  border-bottom: 2px solid var(--forest-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-table td {
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.info-table td:first-child { color: var(--ink); font-weight: 500; }
.table-scroll { overflow-x: auto; }

/* Month picker (seasons page) */
.month-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
  gap: 0.35rem;
  margin: 1rem 0;
}
.month-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
}
.month-btn:hover { border-color: var(--gold); }
.month-btn.active { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.month-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
}
.month-panel h3 { margin: 0 0 0.4rem; }
.month-meta {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.month-meta strong { color: var(--forest-deep); }

/* Checklist (visas page) */
.checklist { list-style: none; padding: 0 !important; display: grid; gap: 0.5rem !important; }
.checklist li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.checklist input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--forest);
  flex-shrink: 0;
}
.checklist label { cursor: pointer; }
.checklist li.done label { text-decoration: line-through; opacity: 0.55; }

/* Budget estimator (money page) */
.budget-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 1rem 0 1.5rem;
}
.budget-controls {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}
.budget-controls label { font-size: 0.88rem; color: var(--ink-soft); font-weight: 500; }
.budget-controls input, .budget-controls select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}
.budget-controls input { width: 5rem; }
.budget-result {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest-deep);
  font-weight: 700;
}
.budget-sub { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* Flashcards (language page) */
.flashcard-box {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  margin: 1rem 0 1.6rem;
}
.flashcard-word {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.flashcard-pron { font-style: italic; opacity: 0.8; font-size: 0.95rem; min-height: 1.4em; }
.flashcard-answer {
  font-size: 1.15rem;
  margin: 0.8rem 0 1.2rem;
  min-height: 1.5em;
  font-weight: 500;
}
.flashcard-buttons { display: flex; gap: 0.7rem; justify-content: center; }
.flashcard-buttons button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(250,246,236,0.5);
  background: none;
  color: var(--cream);
  cursor: pointer;
}
.flashcard-buttons button:hover { border-color: var(--gold); color: var(--gold); }
.flashcard-buttons .primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Type cards (stay / transport pages) */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin: 1.2rem 0 1.6rem;
}
.type-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.type-card .type-icon { font-size: 1.7rem; margin-bottom: 0.4rem; }
.type-card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
.type-card p { font-size: 0.88rem; margin: 0; }
.type-card .price {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}

.card-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  align-items: baseline;
}
.dest-meta {
  background: var(--meadow);
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  margin-bottom: 1.4rem;
}
.more-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1.5px solid var(--red);
}
.more-link:hover { color: var(--red); }
.itin-featured .more-link { color: var(--cream); border-bottom-color: var(--red-bright); }

.back-strip {
  text-align: center;
  padding: 0 1.5rem 3.5rem;
}

/* Traditional ornament divider — simplified rushnik/flag-hoist motif */
.ornament {
  height: 20px;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='20' viewBox='0 0 48 20'><path fill='%23c8102e' d='M24 3 L34 10 L24 17 L14 10 Z M-5 10 L0 6.5 L5 10 L0 13.5 Z M43 10 L48 6.5 L53 10 L48 13.5 Z'/><path fill='%23faf6ec' d='M24 7 L28.5 10 L24 13 L19.5 10 Z'/></svg>");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 20px;
  margin: 0;
}
.ornament-pad { padding: 1.1rem 0; }

/* FAQ accordions (toolkit page) */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  padding: 0.9rem 1.2rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--forest-deep);
  font-size: 0.98rem;
}
.faq details[open] summary { margin-bottom: 0.5rem; }
.faq details p { font-size: 0.92rem; margin-bottom: 0.4rem; }

/* Packing generator (toolkit page) */
.packing-controls {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}
.packing-controls label { font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); }
.packing-controls select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}
.packing-count { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.8rem; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Mobile ===== */
@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest-deep);
    flex-direction: column;
    gap: 0;
    display: none;
    border-top: 1px solid rgba(250,246,236,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(250,246,236,0.08); }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .culture-strip { grid-template-columns: 1fr; }
}
