/* ===================================================
   akra Guides — Article Styles
   Extends the akra design system for long-form content
   =================================================== */

:root {
  --bg: #f2f5f1;
  --bg-alt: #e6efe8;
  --surface: #ffffff;
  --primary: #142418;
  --accent: #2b8a55;
  --accent-light: #e0f0e6;
  --muted: #5c7563;
  --border: rgba(43, 138, 85, 0.12);
  --shadow: 0 8px 30px -6px rgba(20, 36, 24, 0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.guide-page--location,
.guide-page--hub {
  background:
    linear-gradient(180deg, rgba(230, 239, 232, 0.92) 0, rgba(242, 245, 241, 0.96) 220px, var(--bg) 520px),
    var(--bg);
}

.guide-page--article,
.guide-page--guides {
  background:
    linear-gradient(180deg, rgba(230, 239, 232, 0.92) 0, rgba(242, 245, 241, 0.96) 240px, var(--bg) 560px),
    var(--bg);
}

/* ===== Header ===== */
.guide-header {
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.guide-header--landing {
  background: rgba(20, 36, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.guide-page--location .guide-header--landing,
.guide-page--hub .guide-header--landing {
  padding: 16px 24px;
  background: rgba(242, 245, 241, 0.9);
  border-bottom: 1px solid rgba(20, 36, 24, 0.08);
  box-shadow: 0 12px 24px -22px rgba(20, 36, 24, 0.45);
  backdrop-filter: blur(12px);
}

.guide-header a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.guide-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.guide-header-brand::before {
  content: "";
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url("/favicon.svg") center / cover no-repeat;
  box-shadow: 0 14px 30px -20px rgba(20, 36, 24, 0.65);
}

.guide-page--location .guide-header-brand,
.guide-page--hub .guide-header-brand,
.guide-page--article .guide-header-brand,
.guide-page--guides .guide-header-brand {
  color: var(--primary);
}

.guide-header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.guide-header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.guide-header nav a:hover {
  opacity: 1;
}

.guide-page--location .guide-header nav a,
.guide-page--hub .guide-header nav a,
.guide-page--article .guide-header nav a,
.guide-page--guides .guide-header nav a {
  color: var(--muted);
  opacity: 1;
}

.guide-page--location .guide-header nav a:hover,
.guide-page--hub .guide-header nav a:hover,
.guide-page--article .guide-header nav a:hover,
.guide-page--guides .guide-header nav a:hover {
  color: var(--primary);
}

.guide-header nav .guide-header-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b8a55 0%, #1f6a3f 100%);
  color: #fff;
  opacity: 1;
  box-shadow: 0 12px 28px -14px rgba(43, 138, 85, 0.9);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.guide-header nav .guide-header-map-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -16px rgba(43, 138, 85, 0.95);
}

.guide-page--location .guide-header nav .guide-header-map-link,
.guide-page--hub .guide-header nav .guide-header-map-link,
.guide-page--article .guide-header nav .guide-header-map-link,
.guide-page--guides .guide-header nav .guide-header-map-link {
  color: #fff;
  box-shadow: 0 12px 24px -18px rgba(43, 138, 85, 0.7);
}

.guide-page--article .guide-header,
.guide-page--guides .guide-header {
  padding: 16px 24px;
  background: rgba(242, 245, 241, 0.9);
  border-bottom: 1px solid rgba(20, 36, 24, 0.08);
  box-shadow: 0 12px 24px -22px rgba(20, 36, 24, 0.45);
  backdrop-filter: blur(12px);
}

/* ===== Article ===== */
.guide-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.guide-article--location,
.guide-article--hub {
  max-width: 1140px;
  padding-top: 30px;
}

.guide-article--article {
  max-width: 860px;
  padding-top: 30px;
}

.guide-article--guides {
  max-width: 1140px;
  padding-top: 30px;
}

.guide-page--article .guide-article--article {
  padding: 38px 40px 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.92));
  border: 1px solid rgba(20, 36, 24, 0.08);
  border-radius: 30px;
  box-shadow: 0 28px 60px -42px rgba(20, 36, 24, 0.34);
}

.guides-intro {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin-bottom: 28px;
  padding: 34px 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.92));
  border: 1px solid rgba(20, 36, 24, 0.08);
  border-radius: 28px;
  box-shadow: 0 26px 56px -42px rgba(20, 36, 24, 0.32);
}

.guides-intro::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(180deg, rgba(43, 138, 85, 0.5), rgba(43, 138, 85, 0.08));
}

.guides-intro > * {
  position: relative;
  z-index: 1;
}

.guide-article h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--primary);
}

.guide-page--article .guide-article h1,
.guide-page--guides .guide-article h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.guides-lead {
  margin-bottom: 0;
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(20, 36, 24, 0.78);
}

.guide-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.guide-page--article .guide-meta {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(43, 138, 85, 0.14);
  border-radius: 999px;
  background: rgba(224, 240, 230, 0.46);
}

.guide-article h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--primary);
}

.guide-article h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--primary);
}

.guide-article p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.guide-article ul, .guide-article ol {
  margin: 0 0 16px 24px;
}

.guide-article li {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.guide-article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-article a:hover {
  color: var(--primary);
}

.guide-article a.cta-btn,
.guide-article a.cta-btn:hover,
.guide-article a.cta-link,
.guide-article a.cta-link:hover,
.guide-article a.guide-card,
.guide-article a.guide-card:hover,
.guide-article a.location-item-link,
.guide-article a.location-item-link:hover,
.guide-header nav a.guide-header-map-link,
.guide-header nav a.guide-header-map-link:hover {
  text-decoration: none;
}

.guide-article a.cta-btn,
.guide-article a.cta-btn:hover,
.guide-header nav a.guide-header-map-link,
.guide-header nav a.guide-header-map-link:hover {
  color: #fff;
}

/* Callout / stat box */
.guide-callout {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 0.95rem;
}

.guide-callout strong {
  color: var(--accent);
}

.guide-page--article .guide-callout,
.guide-page--location .guide-callout,
.guide-page--hub .guide-callout {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(43, 138, 85, 0.16);
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 18px 40px -34px rgba(20, 36, 24, 0.26);
}

.guide-page--article .guide-callout strong,
.guide-page--location .guide-callout strong,
.guide-page--hub .guide-callout strong {
  color: var(--primary);
}

/* Blockquote / expert quote */
.guide-article blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--muted);
}

.guide-article blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.guide-page--article .guide-article blockquote {
  border-left: none;
  border: 1px solid rgba(43, 138, 85, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px -34px rgba(20, 36, 24, 0.24);
  color: rgba(20, 36, 24, 0.78);
}

.guide-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}

.guide-fact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 18px 36px -34px rgba(20, 36, 24, 0.32);
}

.guide-fact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.guide-fact-value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 10px;
}

.guide-fact-value--small {
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: normal;
}

.guide-fact-source {
  font-size: 0.88rem;
  color: var(--muted);
}

.stats-chart-section {
  margin: 30px 0 34px;
}

.stats-chart-section-header {
  margin-bottom: 16px;
}

.stats-chart-section-header p {
  margin-top: 8px;
  color: rgba(20, 36, 24, 0.78);
}

.stats-chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.stats-chart-card {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.92));
  border: 1px solid rgba(20, 36, 24, 0.08);
  box-shadow: 0 20px 42px -34px rgba(20, 36, 24, 0.28);
}

.stats-chart-card h3 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--primary);
}

.stats-chart-subtitle {
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}

.stats-chart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats-chart-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats-chart-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.stats-chart-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.stats-chart-value {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.stats-chart-bar {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(224, 240, 230, 0.9);
  box-shadow: inset 0 1px 2px rgba(20, 36, 24, 0.05);
}

.stats-chart-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2b8a55 0%, #79ba8f 100%);
}

.stats-chart-fill--warm {
  background: linear-gradient(90deg, #237346 0%, #2b8a55 55%, #88c39e 100%);
}

.stats-chart-fill--soft {
  background: linear-gradient(90deg, #6aa684 0%, #9fd0b2 100%);
}

.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--muted);
}

.guide-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.guide-breadcrumbs a:hover {
  color: var(--accent);
}

.guide-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43, 138, 85, 0.18);
  background: rgba(224, 240, 230, 0.75);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-hero,
.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 30px;
}

.location-hero-main,
.location-hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-hero-main {
  position: relative;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.92));
  border: 1px solid rgba(20, 36, 24, 0.08);
  box-shadow: 0 28px 60px -42px rgba(20, 36, 24, 0.36);
}

.location-hero-main::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(180deg, rgba(43, 138, 85, 0.5), rgba(43, 138, 85, 0.08));
}

.location-hero-main > * {
  position: relative;
  z-index: 1;
}

.location-hero-main .guide-breadcrumbs {
  margin-bottom: 0;
}

.location-hero-main h1 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.location-lead {
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(20, 36, 24, 0.92);
}

.location-hero-main p:last-of-type {
  margin-bottom: 0;
}

.location-hero-main p:not(.location-lead) {
  color: rgba(20, 36, 24, 0.76);
}

.location-hero-side .guide-facts-grid {
  margin: 0;
  gap: 12px;
}

.location-hero-side .guide-fact-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(20, 36, 24, 0.08);
}

.location-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-btn--map {
  background: linear-gradient(135deg, #2b8a55 0%, #1f6f44 100%);
  box-shadow: 0 14px 28px -18px rgba(43, 138, 85, 0.7);
}

.cta-btn--map:hover {
  background: linear-gradient(135deg, #2f945b 0%, #1e6f43 100%);
}

.cta-btn--wide {
  width: 100%;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.cta-link::after {
  content: "→";
  transition: transform 0.2s;
}

.cta-link:hover::after {
  transform: translateX(3px);
}

.guide-sources {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.guide-sources-kicker {
  display: none;
}

.guide-sources h2 {
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.guide-sources ul {
  margin: 10px 0 0 18px;
}

.guide-sources li {
  font-size: 0.94rem;
  color: var(--muted);
}

.guide-sources p:last-of-type {
  margin-bottom: 0;
}

/* FAQ section */
.faq-section {
  margin-top: 40px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.guide-page--article .faq-item {
  border-radius: 18px;
  border-color: rgba(20, 36, 24, 0.08);
  box-shadow: 0 16px 36px -34px rgba(20, 36, 24, 0.24);
}

/* CTA banner */
.guide-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  margin: 48px 0 0;
}

.guide-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.guide-cta p {
  opacity: 0.85;
  margin-bottom: 20px;
}

.guide-page--location .guide-cta,
.guide-page--hub .guide-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px 32px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(237, 245, 238, 0.94));
  color: var(--primary);
  border: 1px solid rgba(20, 36, 24, 0.08);
  box-shadow: 0 26px 54px -40px rgba(20, 36, 24, 0.34);
}

.guide-page--location .guide-cta h2,
.guide-page--hub .guide-cta h2 {
  color: var(--primary);
  margin-bottom: 8px;
}

.guide-page--location .guide-cta p,
.guide-page--hub .guide-cta p {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--muted);
}

.guide-page--article .guide-cta {
  padding: 30px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(237, 245, 238, 0.94));
  color: var(--primary);
  border: 1px solid rgba(20, 36, 24, 0.08);
  box-shadow: 0 24px 50px -40px rgba(20, 36, 24, 0.3);
}

.guide-page--article .guide-cta h2 {
  color: var(--primary);
}

.guide-page--article .guide-cta p {
  max-width: 44ch;
  margin-bottom: 18px;
  color: var(--muted);
  opacity: 1;
}

/* Footer */
.guide-footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.guide-footer a {
  color: var(--accent);
  text-decoration: none;
}

/* Guides index grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.15s;
}

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

.guide-page--location .guide-card,
.guide-page--hub .guide-card,
.guide-page--guides .guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 36, 24, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 38px -34px rgba(20, 36, 24, 0.28);
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
}

.guide-page--location .guide-card:hover,
.guide-page--hub .guide-card:hover,
.guide-page--guides .guide-card:hover {
  border-color: rgba(43, 138, 85, 0.24);
}

.guide-card-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224, 240, 230, 0.84);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--primary);
}

.guide-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.guide-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.guide-card-action::after {
  content: "→";
  color: var(--accent);
  transition: transform 0.2s;
}

.guide-card:hover .guide-card-action::after {
  transform: translateX(3px);
}

.guide-page--article .guide-sources {
  margin-top: 40px;
  padding: 22px 24px;
  border-top: none;
  border: 1px solid rgba(20, 36, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px -34px rgba(20, 36, 24, 0.24);
}

.location-subsection {
  margin-top: 40px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.location-item-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 36, 24, 0.08);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 38px -34px rgba(20, 36, 24, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  min-height: 100%;
}

.location-item-card--compact {
  padding: 18px;
}

.location-item-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 138, 85, 0.24);
  box-shadow: 0 24px 46px -36px rgba(20, 36, 24, 0.34);
}

.location-item-card h3 {
  margin: 0 0 8px;
}

.location-item-card h3 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.location-item-card h3 a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(43, 138, 85, 0.6);
  text-underline-offset: 3px;
}

.location-item-card p:last-child {
  margin-bottom: 0;
}

.location-item-meta {
  margin-bottom: 10px;
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224, 240, 230, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.location-item-address {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 36, 24, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
}

.location-item-actions {
  margin-top: 14px;
  margin-bottom: 0;
}

.location-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.2s;
}

.location-item-link::after {
  content: "→";
  transition: transform 0.2s;
}

.location-item-link:hover {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
}

.location-item-link:hover::after {
  transform: translateX(3px);
}

/* Seasonal table */
.season-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.season-table th, .season-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.season-table th {
  background: var(--bg-alt);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.season-table tr:hover td {
  background: var(--accent-light);
}

/* Responsive */
@media (max-width: 600px) {
  .guide-article {
    padding: 32px 16px 60px;
  }
  .guide-article h1 {
    font-size: 1.7rem;
  }
  .guide-header {
    padding: 14px 16px;
  }
  .guide-header nav {
    gap: 12px;
  }
  .guide-header nav a {
    font-size: 0.82rem;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .guide-breadcrumbs {
    font-size: 0.82rem;
    gap: 6px;
  }
  .guide-fact-value--small {
    font-size: 1rem;
  }
  .stats-chart-card {
    padding: 18px;
  }
  .stats-chart-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .stats-chart-value {
    white-space: normal;
  }
  .location-item-card {
    padding: 18px 18px 16px;
  }

  .guide-page--article .guide-article--article {
    padding: 28px 20px 36px;
    border-radius: 22px;
  }

  .guides-intro {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .guides-intro::before {
    width: 100%;
    height: 4px;
    inset: 0 0 auto 0;
    border-radius: 22px 22px 0 0;
  }
}

@media (max-width: 900px) {
  .location-hero,
  .hub-hero {
    grid-template-columns: 1fr;
  }

  .guide-page--location .guide-cta,
  .guide-page--hub .guide-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-page--location .guide-cta .cta-btn,
  .guide-page--hub .guide-cta .cta-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .guide-header--landing {
    padding: 14px 16px;
  }

  .guide-header-brand {
    gap: 10px;
  }

  .guide-header-brand::before {
    width: 32px;
    height: 32px;
  }

  .guide-page--location .guide-header--landing,
  .guide-page--hub .guide-header--landing,
  .guide-page--article .guide-header,
  .guide-page--guides .guide-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .guide-header--landing nav {
    gap: 10px;
  }

  .guide-page--location .guide-header--landing nav,
  .guide-page--hub .guide-header--landing nav,
  .guide-page--article .guide-header nav,
  .guide-page--guides .guide-header nav {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .guide-header nav .guide-header-map-link {
    padding: 9px 14px;
  }

  .guide-article--location,
  .guide-article--hub,
  .guide-article--article,
  .guide-article--guides {
    padding-top: 24px;
  }

  .location-hero-main {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .location-hero-main::before {
    width: 100%;
    height: 4px;
    inset: 0 0 auto 0;
    border-radius: 22px 22px 0 0;
  }

  .location-lead {
    font-size: 1rem;
  }

  .location-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .location-hero-actions .cta-btn,
  .location-hero-actions .cta-link {
    justify-content: center;
  }
  .guide-card,
  .location-item-card {
    min-height: auto;
  }

  .guide-page--article .guide-cta {
    padding: 24px 20px;
  }
}

/* ===== Hesseldal-inspired underpage refresh ===== */
:root {
  --accent-dark: #1f6b41;
  --shadow-soft: 0 2px 8px rgba(20, 36, 24, 0.05);
  --underpage-max: 1080px;
  --radius: 16px;
  --radius-sm: 10px;
}

body {
  line-height: 1.65;
  overflow-x: hidden;
}

.guide-page--location,
.guide-page--hub,
.guide-page--article,
.guide-page--guides {
  background: var(--bg);
}

.guide-header,
.guide-header--landing,
.guide-page--location .guide-header--landing,
.guide-page--hub .guide-header--landing,
.guide-page--article .guide-header,
.guide-page--guides .guide-header {
  min-height: 68px;
  padding: 10px max(18px, calc((100vw - var(--underpage-max)) / 2));
  background: rgba(242, 245, 241, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: blur(12px);
  color: var(--primary);
}

.guide-header a,
.guide-page--location .guide-header-brand,
.guide-page--hub .guide-header-brand,
.guide-page--article .guide-header-brand,
.guide-page--guides .guide-header-brand {
  color: var(--primary);
}

.guide-header-brand {
  gap: 10px;
  letter-spacing: -0.03em;
  font-size: 1.31rem;
}

.guide-header-brand::before {
  width: 34px;
  height: 34px;
  box-shadow: none;
}

.guide-header nav {
  gap: 16px;
}

.guide-header nav a,
.guide-page--location .guide-header nav a,
.guide-page--hub .guide-header nav a,
.guide-page--article .guide-header nav a,
.guide-page--guides .guide-header nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.guide-header nav .guide-header-map-link,
.guide-page--location .guide-header nav .guide-header-map-link,
.guide-page--hub .guide-header nav .guide-header-map-link,
.guide-page--article .guide-header nav .guide-header-map-link,
.guide-page--guides .guide-header nav .guide-header-map-link {
  position: relative;
  min-height: 48px;
  padding: 12px 16px 12px 58px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.guide-header nav .guide-header-map-link::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 56% 49%, #fff 0 3px, #2b8a55 3.5px 8px, transparent 8.5px),
    linear-gradient(160deg, transparent 0 28%, rgba(255, 255, 255, 0.92) 29% 37%, transparent 38% 100%),
    linear-gradient(18deg, #dde9d8 0 42%, #c6dcc0 43% 100%);
}

.guide-header nav .guide-header-map-link:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.guide-article,
.guide-article--location,
.guide-article--hub,
.guide-article--guides {
  max-width: var(--underpage-max);
  padding: 54px 26px 80px;
}

.guide-article--article,
.guide-page--article .guide-article--article {
  max-width: 860px;
  padding: 54px 26px 80px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guide-article h1,
.guide-page--article .guide-article h1,
.guide-page--guides .guide-article h1,
.location-hero-main h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.guide-article h2,
.location-subsection h2,
.faq-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.guide-article h2 {
  margin-top: 56px;
}

.guide-article h3 {
  letter-spacing: -0.02em;
}

.guide-page--article .guide-article > p:first-of-type {
  max-width: 42em;
  color: #2c3d33;
  font-size: 1.12rem;
}

.guide-meta,
.guide-page--article .guide-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.guides-intro {
  max-width: 760px;
  margin-bottom: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guides-intro::before,
.location-hero-main::before {
  display: none;
}

.guides-lead,
.location-lead {
  color: #2c3d33;
  font-size: 1.08rem;
}

.guide-kicker,
.guide-card-label,
.location-item-meta {
  border-radius: 999px;
  border: 0;
  background: var(--accent-light);
  color: var(--accent-dark);
}

.location-hero,
.hub-hero {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.location-hero-main {
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.location-hero-side .guide-facts-grid {
  gap: 14px;
}

.guide-fact-card,
.location-hero-side .guide-fact-card,
.stats-chart-card,
.guide-card,
.guide-page--location .guide-card,
.guide-page--hub .guide-card,
.guide-page--guides .guide-card,
.location-item-card,
.faq-item,
.guide-page--article .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.guide-fact-card,
.location-hero-side .guide-fact-card {
  padding: 20px;
}

.guide-page--location .guide-card,
.guide-page--hub .guide-card,
.guide-page--guides .guide-card,
.location-item-card {
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.guide-page--location .guide-card:hover,
.guide-page--hub .guide-card:hover,
.guide-page--guides .guide-card:hover,
.location-item-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.stats-chart-card {
  background: var(--surface);
}

.guide-callout,
.guide-page--article .guide-callout,
.guide-page--location .guide-callout,
.guide-page--hub .guide-callout {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.guide-callout strong,
.guide-page--article .guide-callout strong,
.guide-page--location .guide-callout strong,
.guide-page--hub .guide-callout strong {
  color: var(--accent-dark);
}

.guide-article blockquote,
.guide-page--article .guide-article blockquote {
  margin: 36px 0;
  padding: 6px 0 6px 24px;
  border: 0;
  border-left: 3px solid var(--accent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--primary);
  font-style: normal;
}

.guide-article blockquote cite {
  margin-top: 12px;
  color: var(--muted);
}

.cta-btn,
.cta-btn--map {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
  font-size: 0.91rem;
  font-weight: 600;
}

.cta-btn:hover,
.cta-btn--map:hover {
  background: var(--accent-dark);
}

.guide-cta,
.guide-page--article .guide-cta,
.guide-page--location .guide-cta,
.guide-page--hub .guide-cta {
  display: block;
  max-width: 560px;
  margin: 64px auto 0;
  padding: 46px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--primary);
  text-align: center;
}

.guide-cta h2,
.guide-page--article .guide-cta h2,
.guide-page--location .guide-cta h2,
.guide-page--hub .guide-cta h2 {
  margin-top: 0;
  color: var(--primary);
}

.guide-cta p,
.guide-page--article .guide-cta p,
.guide-page--location .guide-cta p,
.guide-page--hub .guide-cta p {
  max-width: 36ch;
  margin: 0 auto 24px;
  color: var(--muted);
  opacity: 1;
}

.guide-sources,
.guide-page--article .guide-sources {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.guide-sources {
  padding: 22px 24px;
}

.season-table {
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.season-table th {
  background: var(--bg-alt);
}

.location-subsection {
  margin-top: 64px;
}

.guide-footer {
  margin-top: 0;
  padding: 28px 26px;
  font-size: 0.81rem;
}

@media (max-width: 900px) {
  .location-hero,
  .hub-hero {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .guide-header,
  .guide-header--landing,
  .guide-page--location .guide-header--landing,
  .guide-page--hub .guide-header--landing,
  .guide-page--article .guide-header,
  .guide-page--guides .guide-header {
    min-height: 0;
    padding: 12px 18px;
  }

  .guide-header nav {
    gap: 10px;
  }

  .guide-header nav .guide-header-map-link,
  .guide-page--location .guide-header nav .guide-header-map-link,
  .guide-page--hub .guide-header nav .guide-header-map-link,
  .guide-page--article .guide-header nav .guide-header-map-link,
  .guide-page--guides .guide-header nav .guide-header-map-link {
    min-height: 44px;
    padding: 10px 14px 10px 52px;
  }

  .guide-header nav .guide-header-map-link::before {
    width: 32px;
    height: 32px;
  }

  .guide-article,
  .guide-article--location,
  .guide-article--hub,
  .guide-article--article,
  .guide-article--guides,
  .guide-page--article .guide-article--article {
    padding: 42px 18px 64px;
  }

  .guide-cta,
  .guide-page--article .guide-cta,
  .guide-page--location .guide-cta,
  .guide-page--hub .guide-cta {
    padding: 34px 22px;
  }
}
