/* ============================================================
   SurfAtlas – Modern, mobile-first stylesheet
   Palette: deep navy, teal, sand, white
   ============================================================ */

:root {
  --c-navy:       #0a2540;
  --c-navy-900:   #061a30;
  --c-teal:       #2ec4b6;
  --c-teal-dark:  #1fa89c;
  --c-sand:       #f5ece0;
  --c-sand-2:     #e8dbc7;
  --c-white:      #ffffff;
  --c-bg:         #fbfaf7;
  --c-muted:      #5b6b80;
  --c-border:     #e3e7ee;
  --c-warn:       #e07a5f;

  --radius-sm:  8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(10,37,64,.06);
  --shadow:    0 12px 28px rgba(10,37,64,.08);
  --shadow-lg: 0 20px 60px rgba(10,37,64,.16);

  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --h-header: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-navy);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-teal-dark); text-decoration: none; }
a:hover { color: var(--c-navy); }

h1, h2, h3, h4 { line-height: 1.18; color: var(--c-navy); margin-top: 0; }
h1 { font-size: clamp(2rem, 4vw + .5rem, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2vw + .5rem, 2.2rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.18rem; font-weight: 700; }

p { margin: 0 0 1rem; }
.muted { color: var(--c-muted); }
.small { font-size: .85rem; }
.lead  { font-size: 1.1rem; color: var(--c-muted); max-width: 70ch; }
.text-center { text-align: center; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 20px;
}

.section     { padding: 64px 0; }
.section-alt { background: var(--c-white); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 24px;
}
.link-arrow {
  font-weight: 600; color: var(--c-navy);
}
.link-arrow::after { content: " →"; }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--h-header);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-navy); font-weight: 800; letter-spacing: -.01em;
  font-size: 1.1rem;
}
.brand:hover { color: var(--c-navy); }
.brand-logo { width: 36px; height: 36px; }

.nav-primary ul {
  list-style: none; display: flex; gap: 22px; margin: 0; padding: 0;
  align-items: center;
}
.nav-primary a {
  color: var(--c-navy); font-weight: 500; padding: 8px 2px;
  position: relative;
}
.nav-primary a:not(.nav-cta):hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--c-teal);
}
.nav-cta {
  background: var(--c-navy); color: #fff !important;
  padding: 10px 18px !important; border-radius: 999px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--c-teal-dark); }

.lang-switch a {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  padding: 6px 10px !important; border-radius: 999px;
  border: 1px solid var(--c-border); color: var(--c-muted) !important;
}
.lang-switch a:hover { background: var(--c-sand); color: var(--c-navy) !important; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; gap: 5px; flex-direction: column;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--c-navy); display: block;
  transition: transform .2s;
}

/* ========== Hero ========== */
.hero {
  position: relative; overflow: hidden;
  min-height: 80vh; padding: 120px 0 80px;
  color: #fff;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,.75) 0%, rgba(46,196,182,.45) 100%),
    url("https://images.unsplash.com/photo-1502680390469-be75c86b636f?auto=format&fit=crop&w=1920&q=75") center / cover no-repeat;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block; background: rgba(255,255,255,.15);
  padding: 8px 14px; border-radius: 999px;
  font-size: .85rem; letter-spacing: .02em; margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-title { color: #fff; margin: 0 0 18px; }
.accent { color: #ffd3a5; }
.hero-sub { font-size: 1.15rem; max-width: 60ch; opacity: .95; }

.hero-search {
  position: relative; display: flex; gap: 10px; max-width: 620px;
  background: #fff; padding: 10px; border-radius: 999px;
  box-shadow: var(--shadow-lg); margin-top: 30px;
}
.hero-search input {
  flex: 1; border: 0; font-size: 1rem; padding: 12px 18px; border-radius: 999px;
  background: transparent; color: var(--c-navy); outline: none;
}
.hero-search--inline { box-shadow: var(--shadow-sm); max-width: 560px; margin-top: 20px; }

.search-suggestions {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.search-suggestions a {
  display: block; padding: 12px 18px; color: var(--c-navy);
  border-bottom: 1px solid var(--c-border);
}
.search-suggestions a:hover { background: var(--c-sand); }
.search-suggestions a:last-child { border-bottom: 0; }

.hero-actions { margin-top: 26px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; border: 0; cursor: pointer; font-size: .98rem;
  transition: transform .15s, background .15s, color .15s;
}
.btn-primary { background: var(--c-teal); color: #fff; }
.btn-primary:hover { background: var(--c-teal-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn-block { width: 100%; }

/* ========== Cards ========== */
.cards-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media {
  display: block; position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--c-sand);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,37,64,.85); color: #fff;
  font-size: .75rem; padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card-body { padding: 18px 20px 22px; }
.card-title { font-size: 1.1rem; margin: 0 0 4px; }
.card-title a { color: var(--c-navy); }
.card-meta { color: var(--c-muted); font-size: .88rem; margin: 0 0 10px; }
.card-desc { color: var(--c-muted); font-size: .92rem; margin: 0; }

/* ========== Features ========== */
.features-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature {
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.feature-icon {
  font-size: 2rem; display: inline-block; margin-bottom: 10px;
}

/* ========== Country chips ========== */
.country-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0;
}
.country-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--c-border);
  color: var(--c-navy); font-weight: 500; font-size: .95rem;
  transition: border-color .15s, background .15s;
  cursor: pointer;
}
.country-chip:hover { border-color: var(--c-teal); background: var(--c-sand); color: var(--c-navy); }
.country-chip .iso {
  display: inline-block; min-width: 28px; text-align: center;
  font-size: .7rem; font-weight: 800; letter-spacing: .04em;
  background: var(--c-navy); color: #fff; padding: 3px 6px; border-radius: 6px;
}

/* ========== Breadcrumb ========== */
.breadcrumb ol {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: .85rem; color: var(--c-muted);
}
.breadcrumb li + li::before { content: "›"; margin-right: 6px; opacity: .5; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-navy); }

/* ========== Map ========== */
.map-hero { padding: 36px 20px 12px; }
.map-wrap {
  display: grid; gap: 16px; padding: 0 20px 40px;
  grid-template-columns: 260px 1fr;
  max-width: var(--container); margin-inline: auto;
}
.map-filters {
  background: #fff; border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  align-self: start; position: sticky; top: calc(var(--h-header) + 16px);
}
.map-filters details { margin: 6px 0; }
.map-filters summary { font-weight: 600; cursor: pointer; padding: 6px 0; }
.map-filters label {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; font-size: .95rem; color: var(--c-navy);
  cursor: pointer;
}
.chip {
  display: inline-block; margin: 4px 6px 0 0;
  padding: 6px 12px; border-radius: 999px; background: var(--c-sand);
  border: 0; cursor: pointer; font-size: .85rem;
}
.chip:hover { background: var(--c-sand-2); }

.map-canvas {
  height: calc(100vh - var(--h-header) - 100px);
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  z-index: 1;
}
.map-canvas--small { height: 360px; min-height: 360px; }
.map-canvas--home {
  height: 520px; min-height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.leaflet-popup-content { margin: 12px 14px; font-family: var(--font); }
.popup-title { font-weight: 700; margin: 0 0 4px; color: var(--c-navy); }
.popup-sub { color: var(--c-muted); font-size: .85rem; margin: 0 0 8px; }
.popup-link {
  display: inline-block; margin-top: 4px; font-weight: 600;
  color: var(--c-teal-dark);
}

/* ========== Spot detail ========== */
.spot-hero {
  position: relative; min-height: 58vh; overflow: hidden; color: #fff;
}
.spot-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.spot-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.85), rgba(10,37,64,.1));
}
.spot-hero-content {
  position: relative; padding: 220px 20px 40px;
}
.spot-hero-content h1 { color: #fff; margin-bottom: 6px; }
.spot-hero-sub { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0; }
.spot-hero .breadcrumb ol,
.spot-hero .breadcrumb a { color: rgba(255,255,255,.8); }

.spot-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px; padding: 48px 20px;
}
.spot-section { margin-bottom: 40px; }
.spot-section h2 { margin-bottom: 12px; }
.spot-warning { background: #fff3ee; border-left: 4px solid var(--c-warn); padding: 16px 20px; border-radius: var(--radius-sm); }

.gallery { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }

.fact-card {
  background: #fff; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  position: sticky; top: calc(var(--h-header) + 16px);
}
.fact-card h3 { margin-top: 0; }
.fact-card dl {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin: 0 0 16px;
}
.fact-card dt { color: var(--c-muted); font-size: .82rem; }
.fact-card dd { margin: 0; font-weight: 500; }

/* Favorite heart button */
.fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: #aab3c3;
  font-size: 1.2rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(10,37,64,.15);
  transition: transform .15s, color .15s, background .15s;
}
.fav-btn:hover { transform: scale(1.08); color: #e07a5f; }
.fav-btn.is-on { color: #e07a5f; background: #fff; }
.fav-btn.is-on:hover { color: #c8644a; }

.fav-btn--lg {
  position: static; width: 48px; height: 48px; font-size: 1.5rem;
  margin-left: 12px; vertical-align: middle;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  box-shadow: none; border: 1px solid rgba(255,255,255,.35);
}
.fav-btn--lg:hover { background: rgba(255,255,255,.25); color: #fff; }
.fav-btn--lg.is-on { background: #fff; color: #e07a5f; border-color: #fff; }

.nav-fav {
  display: inline-flex !important; align-items: center; gap: 4px;
  color: #e07a5f !important; font-size: 1.05rem;
}
.fav-count {
  font-size: .72rem; font-weight: 700;
  background: #e07a5f; color: #fff;
  padding: 2px 7px; border-radius: 999px; min-width: 18px;
  display: inline-block; text-align: center;
}
.fav-count[hidden] { display: none; }

.empty { text-align: center; padding: 48px 20px; color: var(--c-muted); }

/* Forecast widget */
.forecast-card {
  background: linear-gradient(160deg, var(--c-navy) 0%, #0f3558 100%);
  color: #fff; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.forecast-card h3 { color: #fff; margin: 0 0 14px; font-size: 1.05rem; letter-spacing: .02em; }
.forecast-card a { color: #ffd3a5; }
.forecast-card .muted { color: rgba(255,255,255,.65); }
.fc-loading { padding: 10px 0; color: rgba(255,255,255,.7); font-size: .9rem; }
.fc-current {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 10px 0 14px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.fc-cur-wind { display: flex; align-items: center; gap: 12px; }
.fc-cur-wind strong { font-size: 1.6rem; display: block; }
.fc-cur-wind .small, .fc-cur-temp .small { display: block; }
.fc-cur-temp { text-align: right; font-size: 1.2rem; font-weight: 700; }
.fc-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-teal); color: #fff; font-size: 1.2rem; font-weight: 700;
  transition: transform .3s;
}
.fc-days { list-style: none; padding: 0; margin: 14px 0 6px; }
.fc-days li {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 10px;
  align-items: center; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08); font-size: .92rem;
}
.fc-days li:last-child { border-bottom: 0; }
.fc-day-wind { display: inline-flex; align-items: center; gap: 8px; }
.fc-day-wind .fc-arrow { width: 26px; height: 26px; font-size: .85rem; background: rgba(46,196,182,.25); }

.nearby { margin-top: 24px; }
.nearby ul { list-style: none; padding: 0; margin: 0; }
.nearby li + li { border-top: 1px solid var(--c-border); }
.nearby a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0; color: var(--c-navy); gap: 8px;
}
.nearby a:hover strong { color: var(--c-teal-dark); }

/* Comments */
.comments { list-style: none; padding: 0; margin: 0 0 24px; }
.comments li {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 10px;
}
.comment-meta { font-size: .85rem; color: var(--c-muted); margin-bottom: 4px; }
.comment-form { background: #fff; border: 1px solid var(--c-border); padding: 20px; border-radius: var(--radius); }
.comment-form label { display: block; font-size: .9rem; color: var(--c-muted); margin: 10px 0 4px; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit;
  background: var(--c-bg); color: var(--c-navy);
}
.comment-form input:focus, .comment-form textarea:focus {
  outline: none; border-color: var(--c-teal); background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ========== Blog post ========== */
.post-head { margin-bottom: 18px; }
.post-cover {
  width: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.post-body { max-width: 72ch; font-size: 1.05rem; }
.post-body h2 { margin-top: 2.2rem; }
.post-body h3 { margin-top: 1.6rem; }
.post-body img { border-radius: var(--radius-sm); margin: 1.2rem 0; }

/* ========== Footer ========== */
.site-footer {
  background: var(--c-navy); color: rgba(255,255,255,.85);
  padding: 56px 0 28px; margin-top: 64px;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 40px;
}
.footer-heading { color: #fff; margin: 0 0 12px; font-size: 1.02rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: 6px 0; }
.footer-list a { color: rgba(255,255,255,.75); }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px; font-size: .85rem; color: rgba(255,255,255,.6);
}

.seo-text { max-width: 80ch; color: var(--c-muted); }
.seo-text h2 { color: var(--c-navy); }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-primary {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 18px 20px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--c-border);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav-primary.is-open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav-primary ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-primary a { display: block; padding: 12px 0; width: 100%; }

  .map-wrap { grid-template-columns: 1fr; }
  .map-filters { position: static; }
  .map-canvas { height: 60vh; min-height: 420px; }

  .spot-grid { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; }
  .fact-card { position: static; }
  .spot-hero-content { padding: 140px 20px 30px; }
  .form-row { grid-template-columns: 1fr; }

  .hero { min-height: 72vh; padding: 90px 0 60px; }
  .hero-search { flex-direction: column; border-radius: var(--radius); padding: 12px; gap: 8px; }
  .hero-search input { width: 100%; }
  .hero-search .btn { width: 100%; border-radius: var(--radius-sm); padding: 14px; }
}
@media (max-width: 540px) {
  .section { padding: 44px 0; }
  .fact-card dl { grid-template-columns: 1fr; }
}

/* ========== Admin (minimal) ========== */
.admin-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: #f3f5f9; }
.admin-side {
  background: var(--c-navy); color: #fff; padding: 22px 16px;
}
.admin-side h2 { color: #fff; font-size: 1rem; margin: 0 8px 20px; letter-spacing: .08em; text-transform: uppercase; }
.admin-side a {
  display: block; padding: 10px 12px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85); font-weight: 500;
}
.admin-side a:hover, .admin-side a.active { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { padding: 28px 36px; }
.admin-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.admin-panel {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
}
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.data-table th, .data-table td {
  padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--c-border);
}
.data-table th { background: #f3f5f9; font-weight: 600; }
.data-table tr:hover { background: #fafbff; }
.data-table .actions a { margin-right: 8px; }
.badge {
  font-size: .72rem; padding: 3px 8px; border-radius: 999px;
  background: var(--c-sand); color: var(--c-navy);
}
.badge.on { background: #d2f4ed; color: #0b6a5a; }
.badge.off { background: #fddede; color: #a33030; }

.login-card {
  max-width: 380px; margin: 10vh auto; padding: 28px;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.login-card h1 { font-size: 1.3rem; margin-bottom: 6px; }
.form-grid { display: grid; gap: 14px; }
.form-grid label { font-weight: 500; font-size: .9rem; color: var(--c-navy); }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; padding: 10px 12px; margin-top: 4px;
  border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: #fff;
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: none; border-color: var(--c-teal);
}
.flash {
  padding: 10px 14px; border-radius: var(--radius-sm);
  margin-bottom: 14px; font-size: .95rem;
}
.flash.error   { background: #fde2e2; color: #9c2b2b; border: 1px solid #f4bcbc; }
.flash.success { background: #d2f4ed; color: #0b6a5a; border: 1px solid #8fd9cb; }

/* Print optimisation */
@media print {
  .site-header, .site-footer, .map-filters, .comment-form, .hero-search { display: none !important; }
  body { background: #fff; }
}
