:root {
  --paper: #fbfaf6;
  --paper-strong: #f4efe5;
  --ink: #17211d;
  --muted: #5d6a64;
  --line: #d7ded3;
  --leaf: #2f6b4f;
  --lake: #0f6d7f;
  --sun: #f2b84b;
  --clay: #c85c3b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(23, 33, 29, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", "Noto Sans Devanagari", "Noto Sans Gurmukhi",
    "Noto Sans Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body[dir="rtl"] {
  font-family:
    "Noto Sans Arabic", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215, 222, 211, 0.85);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.hero-inner,
.footer-inner,
.article-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: 82px;
  padding: 0.55rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.language-nav {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.35rem 0;
}

.language-nav a {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.language-nav a:hover,
.language-nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.25rem;
}

.site-menu a {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.46rem 0.68rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.site-menu .site-menu-featured {
  border-color: rgba(200, 92, 59, 0.28);
  background: rgba(200, 92, 59, 0.1);
  color: #81402b;
}

.site-menu .site-menu-featured:hover,
.site-menu .site-menu-featured:focus-visible {
  border-color: rgba(200, 92, 59, 0.42);
  background: rgba(200, 92, 59, 0.16);
  color: #63301f;
}

.site-menu .site-menu-primary {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(45, 111, 78, 0.16);
}

.site-menu .site-menu-primary:hover,
.site-menu .site-menu-primary:focus-visible {
  background: #245a3f;
  color: var(--white);
}

.site-menu .site-menu-saved {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border-color: rgba(47, 107, 79, 0.32);
  background: color-mix(in srgb, var(--green-pale) 72%, var(--white) 28%);
  color: var(--leaf);
}

.site-menu .site-menu-saved:hover,
.site-menu .site-menu-saved:focus-visible {
  border-color: var(--leaf);
  background: var(--white);
  color: var(--leaf);
}

.site-menu .site-menu-saved.is-recent {
  border-color: rgba(37, 100, 137, 0.28);
  background: color-mix(in srgb, #e8f3f8 76%, var(--white) 24%);
  color: #245f7e;
}

.site-menu .site-menu-saved.is-recent:hover,
.site-menu .site-menu-saved.is-recent:focus-visible {
  border-color: #245f7e;
  background: var(--white);
  color: #1b4d67;
}

.site-menu-saved-icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
}

.site-menu-saved-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-menu-saved.is-recent .site-menu-saved-icon svg {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
}

.site-menu-saved-count {
  display: inline-grid;
  min-width: 1.35rem;
  min-height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  padding-inline: 0.3rem;
  background: var(--leaf);
  color: var(--white);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.site-menu-saved.is-recent .site-menu-saved-count {
  background: #245f7e;
}

.site-menu-language-group {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 42px;
  padding: 0.5rem 0.75rem;
}

.menu-toggle-lines {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-toggle-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
  background: #17211d;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.88), rgba(23, 33, 29, 0.56) 43%, rgba(23, 33, 29, 0.16)),
    linear-gradient(0deg, rgba(23, 33, 29, 0.22), rgba(23, 33, 29, 0.08));
  content: "";
}

.french-home-hero {
  min-height: 570px;
  background:
    linear-gradient(118deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.36)),
    url("../images/ottawa-capital/parliament-hill-centre-block-renovation.webp") center / cover no-repeat;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: heroFade 36s infinite;
}

.hero-slide-port-stanley {
  background-image: url("../images/port-stanley/port-stanley-01-upright-20260629b.webp");
}

.hero-slide-toronto {
  background-image: url("../images/toronto-harbourfront/toronto-harbourfront-skyline-ferry.webp");
  animation-delay: 6s;
}

.hero-slide-niagara {
  background-image: url("../images/niagara-falls/niagara-falls-11.webp");
  animation-delay: 12s;
}

.hero-slide-st-catharines {
  background-image: url("../images/st-catharines/st-catharines-05.webp");
  animation-delay: 18s;
}

.hero-slide-bayfield {
  background-image: url("../images/bayfield/bayfield-hero.webp");
  animation-delay: 24s;
}

.hero-slide-aylmer {
  background-image: url("../images/aylmer-sparta-lavender/aylmer-sparta-lavender-07-20260629.webp");
  animation-delay: 30s;
}

@keyframes heroFade {
  0%,
  18% {
    opacity: 1;
  }

  24%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  padding: 7rem 0 5.25rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 2rem;
}

.quick-links a,
.quick-links summary {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.button-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: var(--leaf);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.quick-links summary {
  cursor: pointer;
  list-style: none;
}

.quick-links summary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.42);
  outline-offset: 3px;
}

.quick-links summary::-webkit-details-marker {
  display: none;
}

.quick-links a:hover,
.quick-links summary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-link:hover,
.button-link:focus-visible {
  background: #245a3f;
  border-color: #245a3f;
  color: var(--white);
  outline: 0;
}

.quick-links-more {
  flex: 0 0 auto;
  position: relative;
}

.quick-links-more[open] {
  flex-basis: min(760px, 100%);
  max-width: 100%;
}

.quick-links-more[open] summary {
  background: rgba(255, 255, 255, 0.26);
}

.quick-links-more-panel {
  position: static;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 0.5rem;
  width: min(720px, 100%);
  margin-top: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 0.7rem;
  background: rgba(18, 35, 31, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.quick-links-more-panel a {
  justify-content: flex-start;
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.22);
  padding: 0.52rem 0.75rem;
  font-size: 0.92rem;
  line-height: 1.18;
  text-align: left;
}

body[dir="rtl"] .quick-links-more-panel a {
  text-align: right;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.article-body > .share-bar:first-child {
  margin: 0 0 1.5rem;
}

.share-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .share-label {
  color: rgba(255, 255, 255, 0.76);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}

.guide-save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 40px;
  border: 1px solid rgba(47, 107, 79, 0.42);
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  background: color-mix(in srgb, var(--green-pale) 72%, var(--white) 28%);
  color: var(--leaf);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-save-button:hover,
.guide-save-button:focus-visible {
  border-color: var(--leaf);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(23, 33, 29, 0.12);
  outline: 3px solid rgba(47, 107, 79, 0.15);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.guide-save-button[data-saved="true"] {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--white);
}

.guide-save-icon {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
}

.guide-save-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.guide-save-button[data-saved="true"] .guide-save-icon svg {
  fill: currentColor;
}

.guide-save-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.share-icon {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
  font-size: 1rem;
}

.share-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.share-button-text {
  display: none !important;
}

.hero .share-button {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.share-button:hover {
  border-color: var(--leaf);
  box-shadow: 0 8px 18px rgba(23, 33, 29, 0.1);
  transform: translateY(-1px);
}

.share-button-facebook {
  border-color: #1877f2;
  background: #1877f2;
  color: var(--white);
}

.share-button-x {
  border-color: #111111;
  background: #111111;
  color: var(--white);
}

.share-button-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #062a18;
}

.share-button-telegram {
  border-color: #229ed9;
  background: #229ed9;
  color: var(--white);
}

.share-button.share-button-pinterest {
  border-color: #e60023;
  background: #e60023;
  color: var(--white);
}

.share-button-vk {
  border-color: #0077ff;
  background: #0077ff;
  color: var(--white);
}

.share-button-ok {
  border-color: #ee8208;
  background: #ee8208;
  color: var(--white);
}

.share-button-yandex {
  border-color: #fc3f1d;
  background: #fc3f1d;
  color: var(--white);
}

.share-button-weibo {
  border-color: #e6162d;
  background: #e6162d;
  color: var(--white);
}

.share-button-qq {
  border-color: #12b7f5;
  background: #12b7f5;
  color: #082738;
}

.share-button-baidu {
  border-color: #2932e1;
  background: #2932e1;
  color: var(--white);
}

.share-button-copy {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.share-button[data-copied="true"] {
  border-color: var(--leaf);
  background: #edf4ef;
  color: #23543c;
}

.section {
  padding: 4.5rem 0;
}

.section.tint {
  background: var(--paper-strong);
}

.search-intents {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-strong) 78%, #ffffff 22%);
}

.search-intents .section-header {
  display: block;
  max-width: 860px;
  margin-bottom: 1rem;
}

.search-intents .section-header h2 {
  margin-bottom: 0.75rem;
}

.search-intents .section-header p {
  max-width: 760px;
  line-height: 1.75;
}

.intent-list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intent-list li {
  min-width: 0;
}

.intent-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .95rem;
  background: rgba(255, 255, 255, .76);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
  unicode-bidi: isolate;
  text-align: start;
  text-decoration: none;
}

.featured-now-more {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .66);
}

.featured-now-more p {
  margin: 0 0 .75rem;
  color: var(--ink);
}

.featured-now-list li {
  display: grid;
  gap: .35rem;
  max-width: 22rem;
}

.featured-now-list span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.intent-link:hover,
.intent-link:focus-visible {
  border-color: var(--green-strong);
  background: var(--green-pale);
  color: var(--ink);
}

html[lang="ur"] .search-intents .section-header h2,
html[lang="ur"] .intent-link,
html[lang="ar"] .search-intents .section-header h2,
html[lang="fa"] .search-intents .section-header h2 {
  line-height: 1.55;
}

.hub-page {
  background: var(--paper);
}

.hub-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.12), rgba(15, 109, 127, 0.08)),
    var(--paper-strong);
}

.hub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: center;
  gap: 2rem;
}

.hub-hero h1 {
  max-width: 860px;
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hub-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button-link.button-link-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hub-search-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 1.1rem;
  box-shadow: 0 12px 28px rgba(23, 33, 29, 0.06);
}

.hub-search-box h2 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hub-pill-list,
.hub-tip-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-pill-list {
  display: grid;
  gap: 0.5rem;
}

.hub-pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  padding: 0.55rem 0.72rem;
  text-align: start;
  unicode-bidi: isolate;
}

.weekend-date-note {
  background: color-mix(in srgb, var(--sky) 16%, var(--white));
  border: 1px solid color-mix(in srgb, var(--leaf) 20%, var(--line));
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.07);
  color: var(--ink);
  display: grid;
  gap: 0.3rem;
  margin: -1.5rem auto 2.5rem;
  max-width: 1100px;
  padding: 1rem 1.15rem;
  position: relative;
  width: calc(100% - 2rem);
}

.weekend-date-note strong {
  color: var(--leaf);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.weekend-date-note p {
  margin: 0;
}

.hub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hub-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.06);
  color: var(--ink);
  text-decoration: none;
}

.hub-card:hover,
.hub-card:focus-visible {
  border-color: var(--leaf);
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-2px);
}

.hub-card .card-media {
  display: block;
}

.hub-card-body {
  display: grid;
  gap: 0.42rem;
  padding: 1rem;
}

.hub-card-kicker {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-card strong {
  font-size: 1.14rem;
  line-height: 1.2;
}

.hub-card span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.photo-hub-card figure {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  margin: 0;
}

.photo-hub-card .card-media {
  overflow: hidden;
  background: #e7f1ee;
}

.photo-hub-card .card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-hub-card figcaption {
  display: grid;
  gap: 0.42rem;
  padding: 1rem;
}

.site-index-sections {
  display: grid;
  gap: 1.25rem;
}

.site-index-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.05);
}

.site-index-group h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.site-index-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.55rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-index-list a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  padding: 0.72rem 0.8rem;
  text-decoration: none;
}

.site-index-list a:hover,
.site-index-list a:focus-visible {
  border-color: var(--green-strong);
  background: var(--green-pale);
  outline: 0;
}

.hub-links {
  border-bottom: 1px solid var(--line);
}

.hub-links .section-header {
  display: block;
  max-width: 840px;
}

.hub-links .section-header h2 {
  margin-bottom: 0.7rem;
}

.hub-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
}

.hub-link-card {
  display: grid;
  min-height: 158px;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.08), rgba(15, 109, 127, 0.06)),
    var(--white);
  color: var(--ink);
  padding: 1rem;
  text-decoration: none;
}

.hub-link-card:hover,
.hub-link-card:focus-visible {
  border-color: var(--leaf);
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-2px);
}

.hub-link-card span {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-link-card strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hub-link-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.hub-tips .section-header {
  margin-bottom: 1rem;
}

.hub-tip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hub-tip-list li {
  border-inline-start: 4px solid var(--leaf);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
  padding: 1rem;
}

.hub-faq {
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.hub-faq .section-header {
  display: block;
  max-width: 780px;
}

.hub-faq-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hub-faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.hub-faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.45;
}

.hub-faq-list p {
  max-width: 760px;
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

html[lang="ur"] .hub-hero h1,
html[lang="ur"] .hub-search-box h2,
html[lang="ur"] .hub-pill-list li,
html[lang="ar"] .hub-hero h1,
html[lang="ar"] .hub-search-box h2,
html[lang="fa"] .hub-hero h1,
html[lang="he"] .hub-hero h1 {
  line-height: 1.28;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-header h2,
.article-body h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-header p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.finder {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.finder-inner {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
}

.finder-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.search-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.9rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--white);
}

.sort-group {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.sort-group span {
  margin-inline-end: 0.2rem;
}

.sort-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  line-height: 1.15;
  padding: 0.5rem 0.8rem;
}

.sort-button[aria-pressed="true"],
.sort-button:hover,
.sort-button:focus-visible {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--white);
  outline: 0;
}

.sort-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.map-section {
  padding-top: 3.5rem;
}

.trip-map {
  position: relative;
  height: min(70vh, 640px);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e7f1ee;
  box-shadow: var(--shadow);
}

.trip-map .leaflet-container {
  font: inherit;
}

.trip-map .leaflet-control-attribution {
  font-size: 0.72rem;
}

.map-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
}

.map-fallback a,
.trip-map-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(23, 33, 29, 0.16);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.map-fallback a {
  padding: 0.35rem 0.75rem;
}

.trip-map-label {
  gap: 0.45rem;
  padding: 0.32rem 0.62rem 0.32rem 0.34rem;
}

.trip-map-label::before {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 0 5px rgba(200, 92, 59, 0.16);
  content: "";
}

.trip-map-label:hover,
.trip-map-label:focus-visible {
  background: var(--leaf);
  color: var(--white);
}

.trip-map-popup a {
  color: var(--leaf);
  font-weight: 850;
  text-decoration: none;
}

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

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.06);
  text-decoration: none;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  /* A neutral fallback prevents an unmapped destination from silently
     inheriting another city's photo. The build audit requires every article
     card to have a destination-specific class. */
  background:
    radial-gradient(circle at 78% 18%, rgba(246, 184, 68, 0.35), transparent 42%),
    linear-gradient(135deg, #1c3b31, #0f6d7f);
}

.card-media[data-card-image="true"] {
  overflow: hidden;
}

.card-media[data-card-image="true"] > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media[data-card-image="true"]::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12));
  content: "";
  pointer-events: none;
}

.card-media.port-stanley-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.26), rgba(15, 109, 127, 0.18)),
    url("../images/port-stanley/port-stanley-01-upright-20260629b.webp") center / cover no-repeat;
}

.card-media.st-thomas-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.26), rgba(15, 109, 127, 0.18)),
    url("../images/st-thomas-elevated-park/st-thomas-elevated-park-08.webp") center / cover no-repeat;
}

.card-media.toronto-harbourfront-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.26), rgba(15, 109, 127, 0.18)),
    url("../images/toronto-harbourfront/toronto-harbourfront-skyline-ferry.webp") center / cover no-repeat;
}

.card-media.toronto-cn-tower-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.16)),
    url("../images/toronto-cn-tower/toronto-cn-tower-skyline-view.webp") center / cover no-repeat;
}

.card-media.toronto-zoo-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/toronto-zoo/toronto-zoo-hero.webp") center / cover no-repeat;
}

.card-media.twin-valley-zoo-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/twin-valley-zoo/kangaroos.webp") center 58% / cover no-repeat;
}

.card-media.guelph-downtown-arboretum-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.12)),
    url("../images/guelph-downtown-arboretum/downtown-guelph-basilica-towers.webp") center 61% / cover no-repeat;
}

.card-media.ancaster-hamilton-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/ancaster-hamilton/hamilton-sam-lawrence-park-hero.webp") center 48% / cover no-repeat;
}

.card-media.scarborough-bluffs-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.1)),
    url("../images/scarborough-bluffs/scarborough-bluffs-geology-beach.webp") center / cover no-repeat;
}

.card-media.old-mill-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.16)),
    url("../images/old-mill-etobicoke/old-mill-etobicoke-hero.webp") center / cover no-repeat;
}

.card-media.mcmichael-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/mcmichael-kleinburg/mcmichael-kleinburg-hero.webp?v=20260705b") center / cover no-repeat;
}

.card-media.cheltenham-badlands-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.16), rgba(15, 109, 127, 0.1)),
    url("../images/cheltenham-badlands/cheltenham-badlands-viewing-area-red-ridges.webp") center / cover no-repeat;
}

.card-media.blue-mountain-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.12)),
    url("../images/social/blue-mountain-georgian-bay-guide.jpg") center / cover no-repeat;
}

.card-media.oro-medonte-barrie-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.16), rgba(15, 109, 127, 0.1)),
    url("../images/oro-medonte-barrie/barrie-marina-waterfront.webp") center / cover no-repeat;
}

.card-media.oakville-burlington-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.1)),
    url("../images/oakville-burlington/burlington-lakeshore-winter-waterfront.webp") center / cover no-repeat;
}

.card-media.sarnia-riverfront-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/social/sarnia-riverfront-walk-guide.jpg") center / cover no-repeat;
}

.card-media.point-edward-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.12)),
    url("../images/social/point-edward-blue-water-bridge-guide.jpg") center / cover no-repeat;
}

.card-media.sifton-bog-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/social/sifton-bog-london-ontario-guide.jpg") center / cover no-repeat;
}

.card-media.niagara-falls-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.16)),
    url("../images/niagara-falls/niagara-falls-11.webp") center / cover no-repeat;
}

.card-media.st-catharines-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.16)),
    url("../images/st-catharines/st-catharines-05.webp") center / cover no-repeat;
}

.card-media.bayfield-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/bayfield/bayfield-hero.webp") center / cover no-repeat;
}

.card-media.aylmer-sparta-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/aylmer-sparta-lavender/aylmer-sparta-lavender-04-20260629.webp") center / cover no-repeat;
}

.card-media.sparta-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/sparta-ontario/sparta-ontario-hero-20260629.webp") center / cover no-repeat;
}

.card-media.cambridge-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.16)),
    url("../images/social/cambridge-galt-ontario-guide.jpg") center / cover no-repeat;
}

.card-media.go-train-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.12)),
    url("../images/go-train-kitchener-waterloo-stratford/go-transit-kitchener-line-train-door.webp") center / cover no-repeat;
}

.card-media.stratford-st-marys-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.12)),
    url("../images/go-train-kitchener-waterloo-stratford/stratford-city-hall-market-square.webp") center 54% / cover no-repeat;
}

.card-media.ottawa-card,
.card-media.ottawa-capital-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.14)),
    url("../images/ottawa-capital/parliament-hill-centre-block-renovation.webp") center / cover no-repeat;
}

.card-media.amherstburg-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.14), rgba(15, 109, 127, 0.1)),
    url("../images/amherstburg/amherstburg-8.webp") center / cover no-repeat;
}

.card-media.hamilton-waterfalls-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/hamilton-waterfalls/hamilton-waterfalls-parking-planning.svg") center / cover no-repeat;
}

.card-media.london-honest-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/london-fall/london-fall-01.webp") center / cover no-repeat;
}

.card-media.ontario-parks-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/ontario-parks/ontario-parks-costs-planning.svg") center / cover no-repeat;
}

.card-media.seo-tools-card {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 194, 87, 0.38), transparent 28rem),
    linear-gradient(120deg, #17211d, #2e6d4e, #17211d);
}

.card-media.windsor-detroit-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/windsor-riverfront/windsor-riverfront-detroit-view.webp") center / cover no-repeat;
}

.card-media.toronto-fall-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.18), rgba(15, 109, 127, 0.14)),
    url("../images/toronto-fall/toronto-fall-01.webp") center / cover no-repeat;
}

.card-media.milne-dam-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.14)),
    url("../images/social/milne-dam-conservation-park-markham-guide.jpg") center / cover no-repeat;
}

.card-media.london-fall-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(15, 109, 127, 0.12)),
    url("../images/london-fall/london-fall-01.webp") center / cover no-repeat;
}

.card-media.via-rail-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.14)),
    url("../images/via-rail/via-rail-01.webp") center / cover no-repeat;
}

.card-media.windsor-riverfront-card {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.22), rgba(15, 109, 127, 0.14)),
    url("../images/social/windsor-riverfront-spring-guide.jpg") center / cover no-repeat;
}

.card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.card-weather,
.card-distance {
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.25;
  padding: 0.35rem 0.62rem;
}

.card-distance {
  background: #edf4ef;
  color: #23543c;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: #edf4ef;
  color: #23543c;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.24rem 0.55rem;
}

.tag.warning {
  background: #fff1dd;
  color: #8d4b00;
}

.tag.border {
  background: #e8f4f6;
  color: #0c5867;
}

.card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.community-card {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  text-decoration: none;
}

.community-card:hover {
  border-color: var(--leaf);
  box-shadow: var(--shadow);
}

.community-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.community-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.story-promo {
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.12), rgba(15, 109, 127, 0.08)),
    var(--paper-strong);
}

.contributor-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.story-promo .section-header {
  max-width: 760px;
}

.story-promo .eyebrow {
  color: var(--clay);
}

.follow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.follow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
}

.follow-card h2 {
  margin-top: 0;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.promise-item {
  min-height: 160px;
  background: var(--paper);
  padding: 1.25rem;
}

.promise-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.promise-item p {
  margin: 0;
  color: var(--muted);
}

.article-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 194, 87, 0.32), transparent 28rem),
    linear-gradient(120deg, rgba(23, 33, 29, 0.96), rgba(46, 109, 78, 0.78), rgba(23, 33, 29, 0.92));
  color: var(--white);
}

.article-hero.port-stanley-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/port-stanley/port-stanley-hero-upright-20260629b.webp") center / cover no-repeat;
}

.article-hero.st-thomas-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/st-thomas-elevated-park/st-thomas-elevated-park-08.webp") center / cover no-repeat;
}

.article-hero.toronto-harbourfront-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/toronto-harbourfront/toronto-harbourfront-skyline-ferry.webp") center / cover no-repeat;
}

.article-hero.toronto-cn-tower-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.44), rgba(23, 33, 29, 0.08)),
    url("../images/toronto-cn-tower/toronto-cn-tower-skyline-view.webp") center / cover no-repeat;
}

.article-hero.toronto-zoo-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.44), rgba(23, 33, 29, 0.1)),
    url("../images/toronto-zoo/toronto-zoo-hero.webp") center / cover no-repeat;
}

.article-hero.scarborough-bluffs-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.42), rgba(23, 33, 29, 0.08)),
    url("../images/scarborough-bluffs/scarborough-bluffs-geology-beach.webp") center / cover no-repeat;
}

.article-hero.old-mill-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.8), rgba(23, 33, 29, 0.48), rgba(23, 33, 29, 0.12)),
    url("../images/old-mill-etobicoke/old-mill-etobicoke-hero.webp") center / cover no-repeat;
}

.article-hero.mcmichael-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/mcmichael-kleinburg/mcmichael-kleinburg-hero.webp?v=20260705b") center / cover no-repeat;
}

.article-hero.blue-mountain-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.45), rgba(23, 33, 29, 0.08)),
    url("../images/social/blue-mountain-georgian-bay-guide.jpg") center / cover no-repeat;
}

.article-hero.oro-medonte-barrie-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.76), rgba(23, 33, 29, 0.42), rgba(23, 33, 29, 0.08)),
    url("../images/oro-medonte-barrie/barrie-marina-waterfront.webp") center / cover no-repeat;
}

.article-hero.oakville-burlington-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.45), rgba(23, 33, 29, 0.08)),
    url("../images/oakville-burlington/burlington-lakeshore-winter-waterfront.webp") center / cover no-repeat;
}

.article-hero.sarnia-riverfront-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.45), rgba(23, 33, 29, 0.08)),
    url("../images/social/sarnia-riverfront-walk-guide.jpg") center / cover no-repeat;
}

.article-hero.point-edward-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.76), rgba(23, 33, 29, 0.42), rgba(23, 33, 29, 0.08)),
    url("../images/social/point-edward-blue-water-bridge-guide.jpg") center / cover no-repeat;
}

.article-hero.sifton-bog-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.45), rgba(23, 33, 29, 0.08)),
    url("../images/social/sifton-bog-london-ontario-guide.jpg") center / cover no-repeat;
}

.article-hero.niagara-falls-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/niagara-falls/niagara-falls-11.webp") center / cover no-repeat;
}

.article-hero.st-catharines-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/st-catharines/st-catharines-05.webp") center / cover no-repeat;
}

.article-hero.bayfield-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/bayfield/bayfield-hero.webp") center / cover no-repeat;
}

.article-hero.aylmer-sparta-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/social/aylmer-sparta-lavender-bridge-guide.jpg") center / cover no-repeat;
}

.article-hero.amherstburg-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.84), rgba(23, 33, 29, 0.52), rgba(23, 33, 29, 0.12)),
    url("../images/amherstburg/amherstburg-1.webp") center / cover no-repeat;
}

.article-hero.sparta-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.46), rgba(23, 33, 29, 0.1)),
    url("../images/sparta-ontario/sparta-ontario-hero-20260629.webp") center / cover no-repeat;
}

.article-hero.cambridge-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.52), rgba(23, 33, 29, 0.14)),
    url("../images/social/cambridge-galt-ontario-guide-20260717.jpg") center / cover no-repeat;
}

.article-hero.cheltenham-badlands-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.84), rgba(23, 33, 29, 0.52), rgba(23, 33, 29, 0.16)),
    url("../images/cheltenham-badlands/cheltenham-badlands-viewing-area-red-ridges.webp") center / cover no-repeat;
}

.article-hero.go-train-kw-stratford-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.52), rgba(23, 33, 29, 0.14)),
    url("../images/go-train-kitchener-waterloo-stratford/go-transit-kitchener-line-train-door.webp") center / cover no-repeat;
}

.article-hero.hamilton-waterfalls-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/hamilton-waterfalls/hamilton-waterfalls-parking-planning.svg") center / cover no-repeat;
}

.article-hero.toronto-fall-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.45), rgba(23, 33, 29, 0.08)),
    url("../images/toronto-fall/toronto-fall-01.webp") center / cover no-repeat;
}

.article-hero.milne-dam-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.44), rgba(23, 33, 29, 0.08)),
    url("../images/social/milne-dam-conservation-park-markham-guide.jpg") center / cover no-repeat;
}

.article-hero.london-fall-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.78), rgba(23, 33, 29, 0.42), rgba(23, 33, 29, 0.08)),
    url("../images/london-fall/london-fall-01.webp") center / cover no-repeat;
}

.article-hero.london-honest-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/london-fall/london-fall-01.webp") center / cover no-repeat;
}

.article-hero.ontario-parks-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/ontario-parks/ontario-parks-costs-planning.svg") center / cover no-repeat;
}

.article-hero.ottawa-capital-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.84), rgba(23, 33, 29, 0.52), rgba(23, 33, 29, 0.12)),
    url("../images/ottawa-capital/parliament-hill-centre-block-renovation.webp") center / cover no-repeat;
}

.article-hero.seo-tools-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 194, 87, 0.38), transparent 28rem),
    linear-gradient(120deg, rgba(23, 33, 29, 0.98), rgba(46, 109, 78, 0.84), rgba(23, 33, 29, 0.92));
}

.article-hero.stratford-st-marys-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.48), rgba(23, 33, 29, 0.12)),
    url("../images/go-train-kitchener-waterloo-stratford/stratford-city-hall-market-square.webp") center 54% / cover no-repeat;
}

.article-hero.twin-valley-zoo-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.84), rgba(23, 33, 29, 0.48), rgba(23, 33, 29, 0.12)),
    url("../images/twin-valley-zoo/kangaroos.webp") center 58% / cover no-repeat;
}

.article-hero.guelph-downtown-arboretum-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.84), rgba(23, 33, 29, 0.45), rgba(23, 33, 29, 0.12)),
    url("../images/guelph-downtown-arboretum/downtown-guelph-basilica-towers.webp") center 61% / cover no-repeat;
}

.article-hero.ancaster-hamilton-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.86), rgba(23, 33, 29, 0.48), rgba(23, 33, 29, 0.08)),
    url("../images/ancaster-hamilton/hamilton-sam-lawrence-park-hero.webp") center 48% / cover no-repeat;
}

.article-hero.via-rail-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/via-rail/via-rail-01.webp") center / cover no-repeat;
}

.article-hero.windsor-detroit-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/windsor-riverfront/windsor-riverfront-detroit-view.webp") center / cover no-repeat;
}

.article-hero.windsor-riverfront-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.5), rgba(23, 33, 29, 0.12)),
    url("../images/social/windsor-riverfront-spring-guide.jpg") center / cover no-repeat;
}

.article-hero .article-inner {
  padding: 6.5rem 0 4.5rem;
}

.article-kicker {
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 860px;
  margin: 0.65rem 0 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.article-hero p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.article-hero .article-byline {
  margin-top: .7rem;
  font-size: .92rem;
  font-weight: 700;
}

.article-byline a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, .65);
  text-underline-offset: .18em;
}

.article-byline a:hover,
.article-byline a:focus-visible {
  color: #fff;
}

.article-main {
  padding: 3.5rem 0;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3rem;
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-body p,
.article-body li {
  color: #34413b;
  font-size: 1.05rem;
}

.article-body h2 {
  margin-top: 2.25rem;
  font-size: 1.75rem;
}

.article-body a {
  color: var(--lake);
  font-weight: 800;
}

.article-body ul {
  padding-left: 1.25rem;
}

.article-body > figure:not(.photo-lead) {
  overflow: hidden;
  margin: 1.6rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-body > figure:not(.photo-lead) img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-body > figure:not(.photo-lead) figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.7rem 0.85rem;
}

.photo-lead {
  overflow: hidden;
  margin: 1.75rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.photo-lead img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-lead figcaption,
.photo-gallery figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.7rem 0.85rem;
}

.photo-credit {
  display: block;
  margin-top: .45rem;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.author-profile {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin: 2rem 0 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.author-profile img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.author-profile h2 {
  margin: 0 0 .5rem;
}

.author-profile p:not(.eyebrow) {
  margin: 0;
}

.author-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--green-strong);
  font-weight: 800;
}

@media (max-width: 620px) {
  .author-profile {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
}

/* Homepage decision-first refresh: reduce header/hero friction and surface
   useful planning controls before the long guide catalogue. */
.home-page .hero {
  min-height: 490px;
}

.home-page .hero-inner {
  padding-block: clamp(4.5rem, 9vw, 6rem) clamp(3rem, 7vw, 4.25rem);
}

.home-page .hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 5.25rem);
}

.home-page .hero p {
  max-width: 660px;
}

.hero-actions,
.hero-shortcuts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.hero-actions {
  margin-top: 1.75rem;
}

.hero-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.hero-action-primary {
  border-color: var(--sun);
  background: var(--sun);
  color: #17211d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero-action-secondary {
  background: rgba(18, 35, 31, 0.46);
  backdrop-filter: blur(8px);
}

.hero-action:hover,
.hero-action:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transform: translateY(-1px);
}

.hero-shortcuts {
  margin-top: 0.85rem;
}

.hero-shortcuts a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.home-finder {
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.09), rgba(66, 119, 148, 0.07)),
    var(--white);
}

.home-finder .finder-inner {
  gap: 1.15rem;
  padding-block: 1.6rem;
}

.home-finder-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 1rem 2rem;
}

.home-finder-heading .eyebrow {
  color: var(--clay);
}

.home-finder-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  text-wrap: balance;
}

.home-finder-heading > p {
  margin: 0;
  color: var(--muted);
}

.home-finder .search-field {
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.06);
}

.recent-guides {
  scroll-margin-top: 7rem;
  border-top: 1px solid rgba(215, 222, 211, 0.82);
  border-bottom: 1px solid rgba(215, 222, 211, 0.82);
  padding-block: 1.65rem;
  background:
    radial-gradient(circle at 88% 20%, rgba(240, 175, 56, 0.13), transparent 28%),
    color-mix(in srgb, var(--green-pale) 50%, var(--white) 50%);
}

.recent-guides-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}

.recent-guides-header .eyebrow {
  margin-bottom: 0.3rem;
  color: var(--clay);
}

.recent-guides-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.recent-guides-header div > p:last-child {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.recent-guides-clear {
  min-height: 42px;
  border: 1px solid rgba(47, 107, 79, 0.35);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--leaf);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
}

.recent-guides-clear:hover,
.recent-guides-clear:focus-visible {
  border-color: var(--leaf);
  background: var(--white);
  outline: 3px solid rgba(47, 107, 79, 0.16);
  outline-offset: 2px;
}

.recent-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.recent-guide-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 116px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(23, 33, 29, 0.07);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.recent-guide-card:hover,
.recent-guide-card:focus-visible {
  border-color: var(--leaf);
  box-shadow: 0 14px 30px rgba(23, 33, 29, 0.12);
  outline: 0;
  transform: translateY(-2px);
}

.recent-guide-media {
  width: 100%;
  height: 100%;
  min-height: 116px;
  aspect-ratio: auto;
  background-position: center;
  background-size: cover;
}

.recent-guide-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.recent-guide-body {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 0.55rem;
  padding: 0.85rem;
}

.recent-guide-body strong {
  font-size: 0.98rem;
  line-height: 1.28;
  text-wrap: balance;
}

.recent-guide-action {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.finder-jump {
  width: max-content;
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.trip-matcher-open,
.trip-matcher-submit {
  display: inline-flex;
  width: max-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 0.68rem 1.05rem;
  background: var(--leaf);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 9px 22px rgba(47, 107, 79, 0.18);
}

.trip-matcher-open::after {
  content: "→";
  margin-inline-start: 0.45rem;
}

body[dir="rtl"] .trip-matcher-open::after {
  content: "←";
}

.trip-matcher-open:hover,
.trip-matcher-open:focus-visible,
.trip-matcher-submit:hover,
.trip-matcher-submit:focus-visible {
  border-color: #245a3f;
  background: #245a3f;
  outline: 3px solid rgba(47, 107, 79, 0.18);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.trip-matcher-home-entry {
  border-bottom: 1px solid var(--line);
  padding-block: 1.35rem;
  background: linear-gradient(120deg, var(--green-pale), var(--white));
}

.trip-matcher-home-entry .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.trip-matcher-home-entry h2,
.trip-matcher-home-entry p {
  margin: 0;
}

.trip-matcher-home-entry h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.trip-matcher-home-entry p {
  margin-top: 0.3rem;
  color: var(--muted);
}

.article-trip-matcher-entry {
  display: block;
  margin-block: 1.4rem 1.8rem;
  border: 1px solid rgba(47, 107, 79, 0.35);
  border-radius: 14px;
  padding: 0.95rem 3rem 0.95rem 1rem;
  background:
    linear-gradient(110deg, rgba(47, 107, 79, 0.12), rgba(66, 119, 148, 0.08)),
    var(--white);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.45;
  text-decoration: none;
  position: relative;
}

.article-trip-matcher-entry::after {
  content: "→";
  position: absolute;
  inset-inline-end: 1rem;
  color: var(--leaf);
  font-size: 1.25rem;
}

body[dir="rtl"] .article-trip-matcher-entry {
  padding: 0.95rem 1rem 0.95rem 3rem;
}

body[dir="rtl"] .article-trip-matcher-entry::after {
  content: "←";
}

.article-trip-matcher-entry:hover,
.article-trip-matcher-entry:focus-visible {
  border-color: var(--leaf);
  outline: 3px solid rgba(47, 107, 79, 0.14);
  outline-offset: 2px;
}

.trip-matcher-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: min(880px, calc(100dvh - 28px));
  overflow: auto;
  border: 0;
  border-radius: 20px;
  padding: 0;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(15, 25, 21, 0.32);
}

.trip-matcher-dialog::backdrop {
  background: rgba(12, 24, 20, 0.68);
  backdrop-filter: blur(4px);
}

.trip-matcher-panel {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.trip-matcher-panel > .eyebrow {
  color: var(--clay);
}

.trip-matcher-panel h2 {
  max-width: 620px;
  margin: 0;
  padding-inline-end: 2.4rem;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.04;
  text-wrap: balance;
}

.trip-matcher-intro {
  margin: 0.7rem 0 1.25rem;
  color: var(--muted);
}

.trip-matcher-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  inset-inline-end: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
}

.trip-matcher-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.trip-matcher-field {
  display: grid;
  gap: 0.38rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.trip-matcher-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 2.4rem 0.65rem 0.75rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}

body[dir="rtl"] .trip-matcher-field select {
  padding: 0.65rem 0.75rem 0.65rem 2.4rem;
}

.trip-matcher-submit {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}

.trip-matcher-results h3 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
}

.trip-matcher-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.trip-matcher-results-grid .card {
  min-width: 0;
}

.trip-matcher-results-grid .card-media {
  aspect-ratio: 16 / 9;
}

.trip-matcher-results-grid .card-body {
  padding: 0.85rem;
}

.trip-matcher-results-grid .card p {
  display: none;
}

.trip-matcher-results-grid .card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
}

.trip-match-action {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.trip-matcher-restart {
  margin-top: 1rem;
  border: 0;
  padding: 0.45rem 0;
  background: transparent;
  color: var(--leaf);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.finder-jump:hover,
.finder-jump:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-page .search-intents .section-header,
.home-page .featured-now .section-header {
  display: grid;
  grid-template-columns: minmax(145px, 0.35fr) minmax(300px, 0.9fr) minmax(280px, 0.85fr);
  align-items: start;
}

.home-page .search-intents .eyebrow,
.home-page .featured-now .eyebrow {
  padding-top: 0.35rem;
}

.home-page .search-intents .intent-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-page .search-intents .intent-list li {
  display: flex;
}

.home-page .search-intents .intent-list .intent-link {
  display: grid;
  width: 100%;
  min-height: 116px;
  align-content: center;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.05);
  color: var(--ink);
  text-decoration: none;
}

.home-page .search-intents .intent-list .intent-link strong {
  font-size: 1.06rem;
}

.home-page .search-intents .intent-list .intent-link span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.home-page .search-intents .intent-list .intent-link:hover,
.home-page .search-intents .intent-list .intent-link:focus-visible {
  border-color: var(--leaf);
  box-shadow: 0 14px 30px rgba(23, 33, 29, 0.1);
  outline: 0;
  transform: translateY(-2px);
}

.home-page .featured-now-more {
  margin-top: 1.25rem;
}

@media (max-width: 920px) {
  .home-page .language-nav {
    display: none;
  }

  .home-page .header-inner {
    min-height: 68px;
  }

  .home-finder-heading,
  .home-page .search-intents .section-header,
  .home-page .featured-now .section-header {
    grid-template-columns: 1fr;
  }

  .home-page .search-intents .eyebrow,
  .home-page .featured-now .eyebrow {
    padding-top: 0;
  }

  .home-page .search-intents .intent-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home-page .hero {
    min-height: 440px;
  }

  .home-page .hero-inner {
    padding-block: 3.7rem 2.5rem;
  }

  .recent-guides {
    padding-block: 1.3rem;
  }

  .recent-guides-header {
    align-items: start;
    margin-bottom: 0.85rem;
  }

  .recent-guides-header div > p:last-child {
    font-size: 0.9rem;
  }

  .recent-guides-clear {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 0.45rem 0.75rem;
  }

  .recent-guides-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .recent-guide-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 104px;
  }

  .recent-guide-media {
    min-height: 104px;
  }

  .trip-matcher-home-entry .section-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .trip-matcher-open,
  .trip-matcher-submit {
    width: 100%;
  }

  .trip-matcher-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 16px;
  }

  .trip-matcher-panel {
    padding: 1.1rem;
  }

  .trip-matcher-form,
  .trip-matcher-results-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trip-matcher-field select {
    min-height: 46px;
  }

  .trip-matcher-results-grid .card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 104px;
  }

  .trip-matcher-results-grid .card-media {
    height: 100%;
    min-height: 104px;
    aspect-ratio: auto;
  }

  .home-page .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.5rem);
    line-height: 0.98;
  }

  .home-page .hero p {
    margin-top: 0.9rem;
    font-size: 1.03rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-action {
    min-height: 44px;
    padding: 0.62rem 1rem;
  }

  .hero-shortcuts {
    gap: 0.4rem 0.85rem;
    margin-top: 0.7rem;
  }

  .home-finder .finder-inner {
    padding-block: 1.3rem;
  }

  .home-finder-heading {
    gap: 0.5rem;
  }

  .home-finder-heading > p {
    font-size: 0.94rem;
  }

  .home-page .search-intents .intent-list {
    grid-template-columns: 1fr;
  }

  .home-page .search-intents .intent-list .intent-link {
    min-height: 92px;
  }
}

.video-lead {
  overflow: hidden;
  margin: 1.75rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.video-lead video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}

.video-lead figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.7rem 0.85rem;
}

.photo-gallery {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.photo-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.photo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-gallery .portrait-photo img {
  aspect-ratio: 3 / 4;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-card h2 {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
}

.map-actions {
  display: block;
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.map-actions:hover {
  color: var(--leaf);
}

.map-block {
  margin-bottom: 1rem;
}

.map-block .map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-block .map-actions {
  border-top: 0;
  padding: 0.65rem 0 1rem;
}

.route-loop-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf4;
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.route-loop-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.route-loop-card svg {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eef5eb;
}

.route-loop-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.route-loop-path {
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.route-loop-node {
  fill: var(--leaf);
  stroke: var(--white);
  stroke-width: 4;
}

.route-loop-card text {
  fill: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

body[dir="rtl"] .article-body ul {
  padding-right: 1.25rem;
  padding-left: 0;
}

.note-box {
  border-left: 5px solid var(--clay);
  background: #fff5ea;
  padding: 1rem;
}

body[dir="rtl"] .note-box {
  border-right: 5px solid var(--clay);
  border-left: 0;
}

.quick-answer-box {
  margin: 1.5rem 0;
}

.quick-answer-box h2 {
  margin-top: 0;
}

.quick-answer-list {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0;
}

.quick-answer-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.quick-answer-item p,
.quick-answer-source {
  margin: 0;
}

.quick-answer-source {
  font-size: 0.95rem;
}

.community-nearby {
  margin: 2.5rem 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf7;
}

.community-nearby h2 {
  margin-top: 0;
}

.community-nearby p {
  margin-bottom: 1rem;
}

.community-nearby-links {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.article-body .community-nearby-links {
  padding: 0;
}

.community-nearby-links a {
  display: block;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(47, 115, 83, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  line-height: 1.35;
  text-decoration: none;
}

.community-nearby-links a:hover,
.community-nearby-links a:focus-visible {
  border-color: rgba(47, 115, 83, 0.48);
  background: #eef6f0;
}

.community-nearby-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.affiliate-booking {
  margin: 2.25rem 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf7;
}

.affiliate-booking h2 {
  margin-top: 0;
}

.affiliate-booking p {
  margin-bottom: 1rem;
}

.affiliate-disclosure {
  margin-bottom: 0 !important;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  max-width: 720px;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  color: var(--ink);
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
}

.form-row textarea {
  min-height: 180px;
  resize: vertical;
}

.checkbox-row label {
  align-items: flex-start;
  display: flex;
  gap: 0.65rem;
  line-height: 1.5;
}

.checkbox-row input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  width: auto;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(45, 111, 78, 0.14);
  outline: 0;
}

.form-submit {
  justify-self: start;
  border: 1px solid var(--leaf);
  background: var(--leaf);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(45, 111, 78, 0.18);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #245a3f;
  color: var(--white);
  outline: 0;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.article-body .button-link {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--white);
}

.article-body .button-link:hover,
.article-body .button-link:focus-visible {
  background: #245a3f;
  color: var(--white);
}

.article-interactions {
  display: grid;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf4;
  padding: 1.25rem;
  margin: 2rem 0;
}

.interaction-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.interaction-header h2,
.comments-block h3 {
  margin: 0;
}

.interaction-header p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  padding: 0.7rem 1rem;
  cursor: pointer;
  white-space: nowrap;
}

.like-button:hover,
.like-button:focus-visible {
  background: #245a3f;
  outline: 0;
}

.like-button[disabled] {
  cursor: default;
  opacity: 0.78;
}

.comments-block {
  display: grid;
  gap: 1rem;
}

.comments-list {
  display: grid;
  gap: 0.75rem;
}

.comment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.85rem 1rem;
}

.comment-card p {
  margin: 0.35rem 0 0;
}

.comment-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.comment-form {
  display: grid;
  gap: 1rem;
}

.comment-submit {
  justify-self: start;
  border: 1px solid var(--leaf);
  background: var(--leaf);
  color: var(--white);
  cursor: pointer;
}

.comment-submit:hover,
.comment-submit:focus-visible {
  background: #245a3f;
  color: var(--white);
  outline: 0;
}

.interaction-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.interaction-status[data-tone="error"] {
  color: #9c2f19;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note[data-tone="error"] {
  color: #9c2f19;
  font-weight: 800;
}

.form-honey {
  position: absolute;
  left: -9999px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
}

.sidebar h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.sidebar a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 0.7rem 0;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.sidebar a:hover {
  color: var(--leaf);
}

.article-weather {
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.article-weather h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.weather-place {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-weight: 850;
}

.weather-now {
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  padding: 0.8rem;
}

.weather-now strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.weather-now span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.weather-forecast-title {
  margin: 0.8rem 0 0.4rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.weather-forecast {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.weather-forecast li {
  display: grid;
  grid-template-columns: minmax(58px, 0.9fr) 1fr auto;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.weather-forecast strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.weather-forecast em {
  font-style: normal;
  white-space: nowrap;
}

.article-weather small {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-brand {
  justify-self: start;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  color: var(--sun);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-disclaimer {
  grid-column: 1 / -1;
  max-width: 960px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin: 2.75rem 0 0;
  padding: 1.25rem;
  border: 1px solid rgba(44, 92, 70, 0.16);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(44, 92, 70, 0.08), rgba(248, 181, 111, 0.12)),
    var(--cream);
}

.article-support-cta .eyebrow {
  margin-block-end: 0.25rem;
}

.article-support-cta h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.article-support-cta p:not(.eyebrow) {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.article-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.support-float {
  position: fixed;
  z-index: 80;
  inset-block-end: calc(1rem + env(safe-area-inset-bottom, 0px));
  inset-inline-end: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: min(92vw, 390px);
  padding: 0.38rem;
  border: 1px solid rgba(44, 92, 70, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(23, 33, 29, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.support-float.is-visible,
.support-float:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.support-float-link {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  padding: 0.62rem 0.9rem 0.62rem 1rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
}

.support-float-link:hover,
.support-float-link:focus-visible {
  background: rgba(44, 92, 70, 0.08);
  outline: 0;
}

.support-float-title {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
}

.support-float-detail {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-float-dismiss {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.support-float-dismiss:hover,
.support-float-dismiss:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .header-inner {
    align-items: center;
    grid-template-columns: 1fr auto;
    padding: 0.85rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.55rem;
  }

  .site-menu[data-open="true"] {
    display: grid;
  }

  .site-menu a {
    justify-content: center;
    border-color: var(--line);
    background: var(--white);
    text-align: center;
  }

  .site-menu-language-group {
    grid-column: 1 / -1;
    display: block;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    padding: 0.75rem;
  }

  .site-menu-language-heading {
    display: block;
    margin: 0 0 0.55rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .site-menu-language-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .site-menu .site-menu-language-links a {
    flex: 0 0 auto;
    padding: 0.4rem 0.62rem;
    font-size: 0.84rem;
    background: var(--cream);
  }

  .language-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: 580px;
  }

  .finder-controls,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-hero-inner,
  .hub-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interaction-header {
    align-items: stretch;
    flex-direction: column;
  }

  .like-button,
  .comment-submit {
    width: 100%;
  }

  .community-grid,
  .follow-grid,
  .promise-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contributor-inner {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner,
  .article-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(23, 33, 29, 0.82), rgba(23, 33, 29, 0.58), rgba(23, 33, 29, 0.28)),
      linear-gradient(90deg, rgba(23, 33, 29, 0.68), rgba(23, 33, 29, 0.14));
  }

  .hero-inner {
    padding: 5.5rem 0 3rem;
  }

  .quick-links {
    gap: 0.5rem;
  }

  .quick-links a,
  .quick-links summary {
    min-height: 40px;
    padding: 0.52rem 0.82rem;
    font-size: 0.94rem;
  }

  .quick-links-more {
    flex-basis: 100%;
  }

  .quick-links-more summary {
    width: max-content;
  }

  .quick-links-more-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0.55rem;
    background: rgba(18, 35, 31, 0.82);
  }

  .section {
    padding: 3rem 0;
  }

  .section-header,
  .footer-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .section-header > * {
    max-width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .article-support-cta {
    grid-template-columns: 1fr;
  }

  .article-support-actions {
    justify-content: flex-start;
  }

  .support-float {
    inset-inline: 12px;
    inset-block-end: calc(12px + env(safe-area-inset-bottom, 0px));
    max-width: none;
    border-radius: 1.2rem;
  }

  .support-float-link {
    flex: 1 1 auto;
    padding-inline: 0.85rem;
  }

  .grid,
  .hub-hero-inner,
  .hub-card-grid,
  .hub-tip-list,
  .community-grid,
  .follow-grid,
  .promise-list,
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .trip-map {
    height: 580px;
    min-height: 580px;
  }

  .card-body {
    padding: 0.9rem;
  }
}

@media (max-width: 520px) {
  .support-float {
    max-width: none;
  }

  .support-float-detail {
    display: none;
  }

  .support-float-link {
    min-height: 2.45rem;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-float {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide-port-stanley {
    opacity: 1;
  }
}

/* Production polish fixes */
.route-loop-card {
  display: none !important;
}

.photo-lead,
.photo-gallery figure {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.photo-lead img,
.photo-gallery img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 780px;
  object-fit: cover;
  object-position: center;
  background: #eef4ef;
  flex: 0 0 auto;
}

/* Keep the photographer's framing intact. Article galleries contain both
   landscape and portrait work, so a forced landscape aspect ratio cropped
   tall originals into misleading, narrow-looking slices on mobile. */
.article-body > figure:not(.photo-lead) img,
.photo-lead img,
.photo-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

.photo-lead figcaption,
.photo-gallery figcaption {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.article-body h2,
.article-body h3 {
  clear: both;
}

.form-submit,
.article-body .form-submit,
.contact-form .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: var(--leaf);
  color: #fff !important;
  border: 1px solid var(--leaf);
  font-weight: 900;
  opacity: 1;
  appearance: none;
  text-decoration: none;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #245a3f;
  color: #fff !important;
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* UX refresh: clearer hierarchy, calmer cards, and more readable articles. */
.language-nav {
  scrollbar-color: rgba(47, 107, 79, 0.32) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.language-nav a {
  scroll-snap-align: start;
}

.hero h1,
.article-hero h1 {
  text-wrap: balance;
}

.hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.24);
}

.search-intents {
  padding-block: 2.75rem;
}

.card {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.07);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.card:hover,
.card:focus-visible {
  border-color: rgba(47, 107, 79, 0.48);
  box-shadow: 0 18px 38px rgba(23, 33, 29, 0.13);
  outline: 0;
  transform: translateY(-3px);
}

.guide-disclosure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--white) 82%, var(--green-pale) 18%);
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.05);
}

.guide-disclosure[hidden] {
  display: none;
}

.guide-disclosure-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.guide-disclosure-button {
  min-height: 44px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: var(--leaf);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.guide-disclosure-button:hover,
.guide-disclosure-button:focus-visible {
  border-color: #245a3f;
  background: #245a3f;
  outline: 3px solid rgba(47, 107, 79, 0.2);
  outline-offset: 2px;
}

.card-media {
  min-height: 0;
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
}

.card-body {
  flex: 1 1 auto;
  align-content: start;
  padding: 1.15rem;
}

.card h3 {
  font-size: clamp(1.14rem, 1.7vw, 1.3rem);
  text-wrap: balance;
}

.card p {
  line-height: 1.55;
}

/* Give the newest guide a magazine-style lead treatment instead of making
   every card compete with equal visual weight. */
.featured-now .grid > .card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  min-height: 320px;
}

.featured-now .grid > .card:first-child .card-media {
  min-height: 320px;
  aspect-ratio: auto;
}

.featured-now .grid > .card:first-child .card-body {
  align-content: center;
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.featured-now .grid > .card:first-child h3 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.article-hero .article-inner {
  padding-block: clamp(4.5rem, 9vw, 7rem) clamp(3.25rem, 7vw, 5rem);
}

.article-hero p {
  line-height: 1.55;
  text-wrap: pretty;
}

.article-main {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.article-grid {
  grid-template-columns: minmax(0, 740px) minmax(260px, 300px);
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.article-body {
  width: 100%;
  max-width: 740px;
}

.article-body p,
.article-body li {
  font-size: clamp(1.02rem, 1.1vw, 1.09rem);
  line-height: 1.78;
}

.article-body h2 {
  margin-top: 2.8rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.16;
  text-wrap: balance;
}

.article-body h3 {
  line-height: 1.28;
  text-wrap: balance;
}

.article-body > figure:not(.photo-lead),
.photo-lead,
.photo-gallery figure {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.07);
}

.article-body > figure:not(.photo-lead) figcaption,
.photo-lead figcaption,
.photo-gallery figcaption {
  padding: 0.8rem 0.95rem;
  line-height: 1.55;
}

.quick-answer-box {
  overflow: hidden;
  border: 1px solid rgba(200, 92, 59, 0.2);
  border-inline-start: 5px solid var(--clay);
  border-radius: 14px;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.06);
}

body[dir="rtl"] .quick-answer-box {
  border-right: 5px solid var(--clay);
  border-left: 1px solid rgba(200, 92, 59, 0.2);
}

.quick-answer-list {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.quick-answer-item {
  border-top: 1px solid rgba(200, 92, 59, 0.18);
  padding-top: 0.8rem;
}

.sidebar {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.07);
}

.article-toc {
  margin: 1.6rem 0 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.06);
}

.article-toc summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-weight: 900;
}

.article-toc summary::-webkit-details-marker {
  display: none;
}

.article-toc summary::after {
  float: inline-end;
  color: var(--leaf);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.article-toc[open] summary::after {
  content: "−";
}

.article-toc ul {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0.65rem 1rem 0.9rem 2.2rem;
}

body[dir="rtl"] .article-toc ul {
  padding-right: 2.2rem;
  padding-left: 1rem;
}

.article-toc a {
  display: block;
  padding: 0.3rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-next-stop {
  display: grid;
  grid-template-columns: minmax(110px, 0.28fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin: 1.15rem 0 2rem;
  border: 1px solid rgba(47, 117, 87, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 117, 87, 0.1), rgba(255, 255, 255, 0.96));
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.06);
}

.article-next-stop-eyebrow {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--leaf);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-next-stop-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--ink);
  text-decoration: none;
}

.article-next-stop-link strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.article-next-stop-link .article-related-action {
  margin: 0;
  white-space: nowrap;
}

.article-next-stop-link:hover strong,
.article-next-stop-link:focus-visible strong {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-related {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.6rem, 4vw, 2.4rem);
}

.article-related > h2 {
  margin-top: 0.25rem;
  max-width: 18ch;
}

.article-related-eyebrow {
  margin: 0;
  color: var(--clay);
  font-size: 0.78rem !important;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.article-related-card {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(47, 117, 87, 0.08), rgba(255, 255, 255, 0.92) 58%),
    var(--paper);
  padding: 1rem;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.06);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.article-related-card::before {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(var(--leaf), var(--lake));
  content: "";
}

.article-related-card strong {
  font-size: 1rem;
  line-height: 1.32;
  text-wrap: balance;
}

.article-related-action {
  margin-top: 1.25rem;
  color: var(--leaf);
  font-size: 0.83rem;
  font-weight: 900;
}

.article-related-card:hover,
.article-related-card:focus-visible {
  border-color: rgba(47, 117, 87, 0.42);
  box-shadow: 0 14px 30px rgba(23, 33, 29, 0.1);
  transform: translateY(-2px);
}

.article-related-card.has-media {
  display: grid;
  grid-template-rows: 126px minmax(0, 1fr);
  min-height: 286px;
  padding: 0;
}

.article-related-media {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--green-pale);
}

.article-related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-related-card.has-media:hover .article-related-media img,
.article-related-card.has-media:focus-visible .article-related-media img {
  transform: scale(1.035);
}

.article-related-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.95rem 1rem 1rem;
}

.article-related-description {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-related-content .article-related-action {
  margin-top: auto;
  padding-top: 0.9rem;
}

.reading-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  inset-inline: 0;
  height: 3px;
  pointer-events: none;
}

.reading-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--leaf), var(--lake), var(--sun));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

body[dir="rtl"] .reading-progress-bar {
  transform-origin: right center;
}

@media (max-width: 920px) {
  .featured-now .grid > .card:first-child {
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  }

  .article-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .article-body,
  .sidebar {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .guide-disclosure {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-disclosure-button {
    width: 100%;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    gap: 0.35rem 0.65rem;
    min-height: 0;
    padding-block: 0.6rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .language-nav {
    margin-inline: -12px;
    width: calc(100% + 24px);
    padding-inline: 12px;
    scroll-padding-inline: 12px;
  }

  .language-nav a {
    padding: 0.38rem 0.6rem;
    font-size: 0.82rem;
  }

  .article-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-related-card {
    min-height: 104px;
  }

  .article-related-card.has-media {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: minmax(124px, auto);
    min-height: 124px;
  }

  .article-related-content {
    padding: 0.78rem 0.82rem;
  }

  .article-related-description {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }

  .article-related-content .article-related-action {
    padding-top: 0.55rem;
  }

  .article-next-stop {
    grid-template-columns: 1fr;
  }

  .article-next-stop-eyebrow {
    padding: 0.58rem 0.85rem;
  }

  .article-next-stop-link {
    padding: 0.78rem 0.85rem;
  }

  .article-next-stop-link .article-related-action {
    font-size: 0.77rem;
  }

  .hero {
    min-height: 510px;
  }

  .hero-inner {
    padding-block: 4.35rem 2.6rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .search-intents {
    padding-block: 2.25rem;
  }

  /* Keep the homepage rail discovery useful without making phone visitors
     scroll through two full-size poster cards before reaching the map. */
  .rail-feature .grid {
    gap: 0.75rem;
  }

  .rail-feature .card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 158px;
  }

  .rail-feature .card-media {
    width: 100%;
    height: 100%;
    min-height: 158px;
    aspect-ratio: auto;
  }

  .rail-feature .card-body {
    gap: 0.45rem;
    min-width: 0;
    padding: 0.85rem;
  }

  .rail-feature .tag-row {
    gap: 0.25rem;
  }

  .rail-feature .tag {
    min-height: 22px;
    padding: 0.16rem 0.42rem;
    font-size: 0.68rem;
  }

  .rail-feature .card h3 {
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .rail-feature .card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  /* The first three featured guides remain visible on phones, but use compact
     editorial rows so visitors reach the map and later discovery sections
     without scrolling through three full poster cards. */
  .featured-now .grid {
    gap: 0.75rem;
  }

  .featured-now .grid > .card,
  .featured-now .grid > .card:first-child {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-column: auto;
    min-height: 158px;
  }

  .featured-now .grid > .card:first-child {
    grid-template-columns: 124px minmax(0, 1fr);
    min-height: 172px;
  }

  .featured-now .grid > .card .card-media,
  .featured-now .grid > .card:first-child .card-media {
    width: 100%;
    height: 100%;
    min-height: 158px;
    aspect-ratio: auto;
  }

  .featured-now .grid > .card:first-child .card-media {
    min-height: 172px;
  }

  .featured-now .grid > .card .card-body,
  .featured-now .grid > .card:first-child .card-body {
    align-content: center;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.85rem;
  }

  .featured-now .grid > .card h3,
  .featured-now .grid > .card:first-child h3 {
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .featured-now .grid > .card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .featured-now .tag-row {
    gap: 0.25rem;
  }

  .featured-now .tag {
    min-height: 22px;
    padding: 0.16rem 0.42rem;
    font-size: 0.68rem;
  }

  /* Keep every planning path visible on phones, but present the hub as a
     compact decision list instead of five tall poster-style cards. */
  .hub-links {
    padding-block: 2.35rem;
  }

  .hub-links .section-header {
    margin-bottom: 1rem;
  }

  .hub-links .section-header h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.65rem, 7.8vw, 2.15rem);
    line-height: 1.08;
  }

  .hub-links .section-header p:last-child {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hub-link-grid {
    gap: 0.6rem;
  }

  .hub-link-card {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    align-content: center;
    align-items: center;
    gap: 0.22rem 0.75rem;
    padding: 0.82rem 0.9rem;
  }

  .hub-link-card::after {
    grid-column: 2;
    grid-row: 1 / 4;
    color: var(--leaf);
    content: "\2192";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 900;
  }

  body[dir="rtl"] .hub-link-card::after {
    content: "\2190";
  }

  .hub-link-card span {
    display: none;
    grid-column: 1;
    font-size: 0.68rem;
  }

  .hub-link-card[data-weekend-planner-card="true"] span {
    display: block;
  }

  .hub-link-card strong {
    grid-column: 1;
    font-size: 1rem;
    line-height: 1.2;
  }

  .hub-link-card em {
    display: -webkit-box;
    overflow: hidden;
    grid-column: 1;
    font-size: 0.84rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .article-hero .article-inner {
    padding-block: 3.6rem 3rem;
  }

  .article-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.35rem);
    line-height: 1.04;
  }

  .article-body p,
  .article-body li {
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .quick-answer-list {
    grid-template-columns: 1fr;
  }

  .support-float {
    inset-inline: auto 12px;
    width: auto;
    max-width: min(78vw, 280px);
    border-radius: 999px;
  }

  body[dir="rtl"] .support-float {
    inset-inline: 12px auto;
  }

  .support-float-detail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .reading-progress-bar {
    transition: none;
  }
}
