
:root{
  --bg:#0f1115;
  --panel:#111318;
  --text:#e6e8eb;
  --muted:#aab0bb;
  --line:#262a33;
  --link:#8bd3ff;
  --max:980px;

  --radius:16px;
  --r-sm:10px;
  --r-md:12px;
  --r-lg:14px;

  --accent:#ef5a98;
  --shadow: 0 10px 30px rgba(0,0,0,.18);

  --field-bg:#0f1117;
  --field-border: rgba(255,255,255,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{ max-width:var(--max); margin:0 auto; padding:24px; }

header{
  position:sticky; top:0;
  background:rgba(11,12,16,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}
.nav{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:14px 24px;
  max-width:var(--max); margin:0 auto;
}
.brand{
  display:flex; gap:10px; align-items:center; font-weight:700;
  letter-spacing:.2px;
}
.badge{
  width:28px; height:28px; border-radius:10px;
  background:linear-gradient(135deg,#2d7cff,#7c2dff);
  display:inline-block;
}
nav a{
  padding:8px 10px; border-radius:10px;
  color:var(--text);
}
nav a[aria-current="page"]{ background:var(--panel); border:1px solid var(--line); }

.hero{
  padding:32px 0 8px;
}
.hero h1{ margin:0 0 8px; font-size:clamp(28px,4vw,40px); }
.hero p{ margin:0 0 14px; color:var(--muted); max-width:62ch; }

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin:18px 0 34px;
}
.card{
  grid-column: span 12;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
@media (min-width: 780px){
  .card.half{ grid-column: span 6; }
  .card.third{ grid-column: span 4; }
}

.kicker{ color:var(--muted); font-size:14px; margin:0 0 10px; }
h2{ margin:0 0 10px; }
.small{ font-size:14px; color:var(--muted); }

.btns{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  background:#1b2230;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
}
.btn:hover{ border-color:#3a4156; text-decoration:none; }

.ratio{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0f1117;
}
.ratio iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (min-width: 780px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
}
.thumb{
  background:#0f1117;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.thumb img{
  width:100%; height:220px; object-fit:cover; display:block;
}
.thumb .cap{ padding:10px 12px; color:var(--muted); font-size:14px; }

footer{
  border-top:1px solid var(--line);
  margin-top:30px;
}
footer .wrap{ padding-top:18px; padding-bottom:30px; color:var(--muted); font-size:14px; }

.paid-badge{
  font-size:12px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#0f1117;
  color:var(--muted);
}

.brand{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:700;
  letter-spacing:.2px;
  font-family:'Fira Sans', system-ui, sans-serif;
}
.brand-gh{
  font-weight:700;
  letter-spacing:0.04em;
  color:var(--accent);
  font-size:2rem;
}
.brand-photo{
  font-weight:400;
  color:#fff;
  font-size:2rem;
}




.post-meta {
  margin: 0 0 1rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;

  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;              /* key */
  padding: 0.45em 0.75em;      /* key */
  border-radius: 999px;

  background: #444;
  color: #fff;
  white-space: nowrap;
}

.badge-accessible {
  background: #2f6f6a; /* calm, not shouty */
}
.badge-wildlife { background: #556b2f; }
.badge-gear     { background: #444b7a; }

/* --- Callouts: accessible contrast --- */
.callout {
  border-left: 6px solid #111;
  background: #f6f7f8;      /* light grey, not white */
  color: #111;             /* dark text */
  padding: 1rem 1.1rem;
  margin: 1.5rem 0;
  border-radius: 12px;
}

.callout h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.callout p {
  margin: 0.4rem 0;
}

.callout a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callout-note {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Theme variants */
.callout-accessible {
  border-left-color: #0f5b53; /* deep teal */
  background: #e7f3f1;        /* soft teal tint */
}

.callout-pink {
  border-left-color: #ef5a98;
  background: #fff0f7;
  color: #111;
}

.badge-note {
  background: #888;
}

.badge-note {
  background: #888;
}

.badge-accessibility { background: #0679e4 !important; /* NHS-ish access sign blue */
  color: #fff !important; }

/* --- Blog badges: force pill shape, override any inherited sizing --- */
.post-meta .badge,
.badge {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 0.35rem 0.7rem !important;
  margin: 0 0.35rem 0.35rem 0 !important;

  border-radius: 999px !important;

  font-size: 0.85rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;

  color: #fff !important;
  background: #333 !important;

  white-space: nowrap !important;
  text-decoration: none !important;
  vertical-align: middle !important;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 12px 0 24px;
}
.photo-tile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Inline images within blog content */
.post-inline-image {
  margin: 0.4rem 0 0.8rem 1rem;
  max-width: 260px;      /* respects your uploaded size */
}

.post-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.post-inline-image figcaption {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #444;
}

@media (min-width: 700px) {
  .post-inline-image {
    float: right;
  }
}

.post-content::after {
  content: "";
  display: block;
  clear: both;
}

.cap .meta {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

/* Gallery search */
.gallery-search {
  margin-top: 12px;
}

.gallery-search input[type="search"] {
  width: 100%;
  max-width: 420px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #888;
}

/* Optional: a visually-hidden label for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-photo {
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.hero {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.hero-lead {
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.hero-footnote {
  font-size: 0.9rem;
  opacity: 0.85;
}

.home-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
  margin: 18px 0 26px;
}

@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
  }
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: block;
}

.hero-lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 6px;
}

.hero-footnote {
  margin-top: 10px;
  opacity: 0.9;
}
.video-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  align-items:center;
}
.video-filters input{
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:10px;
  font-size:16px;
  width:100%;
  max-width:420px;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:12px;
}
@media (max-width: 980px){ .video-grid{ grid-template-columns:repeat(2, 1fr);} }
@media (max-width: 640px){ .video-grid{ grid-template-columns:1fr;} }

.video-card h3{
  font-size:1rem;
  margin:10px 0 4px;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:12px;
}
@media (max-width: 980px){ .social-grid{ grid-template-columns:repeat(2, 1fr);} }
@media (max-width: 640px){ .social-grid{ grid-template-columns:1fr;} }

.social-card{
  display:block;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
}
.social-card img{
  width:100%;
  height:auto;
  display:block;
}
.social-card__body{
  padding:10px 12px;
}
.social-card__body strong{
  display:block;
  margin-bottom:4px;
}

.social-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio: 16 / 9;
  border-bottom:1px solid var(--line);
  font-weight:600;
  opacity:0.8;
}

.video-card{
  display:block;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  background: var(--bg);
}

.video-card img{
  width:100%;
  height:300px;   /* tweak: 220–320 depending on your grid */
  object-fit:cover;
  display:block;
}


.video-card .video-meta{
  padding:12px 14px;
}

.video-card .video-meta p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

.post-mini-grid{
  display:grid;
  gap:12px;
  margin-top:10px;
}

.post-mini{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:10px;
  align-items:stretch;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  text-decoration:none;
  background: var(--bg);
}

.post-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.post-mini__body{
  padding:10px 10px 10px 0;
}

.post-mini__body strong{
  display:block;
  margin-bottom:4px;
}

.post-mini__excerpt{
  margin-top:6px;
  opacity:0.9;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

.affiliate-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

/* --- MailerLite form: theme it to match your site --- */
/* Works for both universal embed + the long embed (by ID) */
#mlb2-35598708.ml-form-embedContainer{
  width: 100% !important;
  display: block;
  margin: 0;
}

#mlb2-35598708 .ml-form-embedWrapper{
  background: var(--panel) !important;
  /* border: 1px solid var(--line) !important; */
  border-radius: var(--radius) !important;
  /* padding: 16px !important; */
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  max-width: none !important; /* remove that 400px feel */
}

/* spacing inside */
#mlb2-35598708 .ml-form-embedBody,
#mlb2-35598708 .ml-form-successBody{
  padding: 0 !important; /* your wrapper already pads */
}

/* Headline + copy */
#mlb2-35598708 h4{
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
}

#mlb2-35598708 p{
  color: var(--muted) !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

/* Labels */
#mlb2-35598708 label,
#mlb2-35598708 .label-description,
#mlb2-35598708 .label-description p{
  color: var(--muted) !important;
  font-family: inherit !important;
}

/* Input */
#mlb2-35598708 input[type="email"],
#mlb2-35598708 input[type="text"]{
  background: #0f1117 !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
  padding: 10px 12px !important;
  font-family: inherit !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
}

/* Placeholder */
#mlb2-35598708 input::placeholder{
  color: rgba(230,232,235,.55) !important;
}

/* Focus */
#mlb2-35598708 input:focus{
  outline: none !important;
  border-color: rgba(139,211,255,.6) !important;
  box-shadow: 0 0 0 3px rgba(139,211,255,.18) !important;
}

/* Button */
#mlb2-35598708 .ml-form-embedSubmit button{
  border:1px solid var(--line) !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  width: 100% !important;
  cursor: pointer !important;
  gap:10px; margin-top:14px;
}

#mlb2-35598708 .ml-form-embedSubmit button:hover{
  border-color:#3a4156; text-decoration:none;
}

#mlb2-35598708 .ml-form-embedSubmit button:focus{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(239,90,152,.25) !important;
}

/* Checkbox row: tidy layout */
#mlb2-35598708 .ml-form-checkboxRow{
  margin: 10px 0 14px 0 !important;
}

#mlb2-35598708 .ml-form-checkboxRow label{
  padding-left: 24px !important;
}

/* Make the checkbox indicator match your theme */
#mlb2-35598708 .ml-form-checkboxRow .label-description::before{
  border-color: rgba(255,255,255,.25) !important;
  background: #0f1117 !important;
}
#mlb2-35598708 .ml-form-checkboxRow input[type="checkbox"]:checked ~ .label-description::before{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

/* Privacy policy text smaller */
#mlb2-35598708 .ml-form-embedPermissions p{
  font-size: 0.85rem !important;
}

/* Recaptcha block: keep it from looking shoved in */
#mlb2-35598708 .ml-form-recaptcha{
  margin: 12px 0 16px 0 !important;
}

/* Banner container */
  .cookie-banner{
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
  }
  .cookie-banner[hidden]{ display:none !important; }

  .cookie-banner__inner{
    max-width: var(--max, 980px);
    margin: 0 auto;
    background: var(--panel, #111318);
    color: var(--text, #e6e8eb);
    border: 1px solid var(--line, #262a33);
    border-radius: var(--radius, 16px);
    padding: 14px 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .cookie-banner__title{
    font-size: 1rem;
    margin: 0 0 6px 0;
  }
  .cookie-banner__desc{
    margin: 0;
    color: var(--muted, #aab0bb);
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .cookie-banner__desc a{
    color: var(--link, #8bd3ff);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .cookie-banner__actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cookie-btn{
    appearance: none;
    border: 1px solid var(--line, #262a33);
    background: #1b2230;
    color: var(--text, #e6e8eb);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
  }
  .cookie-btn:hover{ border-color: #3a4156; }
  .cookie-btn:focus{ outline: none; box-shadow: 0 0 0 3px rgba(139,211,255,.18); border-color: rgba(139,211,255,.55); }

  .cookie-btn--primary{
    background: var(--accent, #ef5a98);
    color: #111;
    border-color: transparent;
  }
  .cookie-btn--primary:focus{ box-shadow: 0 0 0 3px rgba(239,90,152,.25); }

  /* Reopen link/button */
  .cookie-settings-link{
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9998;
    border: 1px solid var(--line, #262a33);
    background: rgba(17,19,24,.85);
    color: var(--muted, #aab0bb);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 0.85rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }
  .cookie-settings-link:hover{ color: var(--text, #e6e8eb); }
  .cookie-settings-link:focus{ outline:none; box-shadow: 0 0 0 3px rgba(139,211,255,.18); border-color: rgba(139,211,255,.55); }

  /* Mobile */
  @media (max-width: 720px){
    .cookie-banner__inner{
      grid-template-columns: 1fr;
    }
    .cookie-banner__actions{
      justify-content: stretch;
    }
    .cookie-btn{ width: 100%; }
  }

  /* --- OneSignal custom link: match site buttons --- */
/* ===== OneSignal: make it a tidy stacked mini CTA ===== */

.onesignal-customlink-container{
  width: 100%;
  max-width: 420px;                 /* matches your hero-photo vibe */
  margin-top: 10px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0f1117;
}

/* Explanation text above button */
.onesignal-customlink-container p,
.onesignal-customlink-container small,
.onesignal-customlink-container span{
  display: block;
  margin: 0 0 10px 0;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.35;
}

/* Button fills the container like before */
.onesignal-customlink-container button,
.onesignal-customlink-container a{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;

  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #1b2230;

  color: var(--text) !important;
  font: inherit;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
}

.onesignal-customlink-container button:hover,
.onesignal-customlink-container a:hover{
  border-color:#3a4156;
}

/* Focus styling */
.onesignal-customlink-container button:focus-visible,
.onesignal-customlink-container a:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px rgba(139,211,255,.18);
  border-color: rgba(139,211,255,.35);
}


.onesignal-customlink-container{
  max-width: 420px;
}

.onesignal-customlink-container button,
.onesignal-customlink-container a{
  width: 100%;
}

