/* =========================================================
   Saara Pets — shared stylesheet
   Palette: warm honey + deep teal, coral pop
   Type: Fredoka (display) + Nunito (body)
   ========================================================= */

:root {
  --ink:        #16302b;
  --forest:     #1e5f55;
  --forest-2:   #2c7a6e;
  --honey:      #f6a821;
  --honey-deep: #e08800;
  --coral:      #f2664f;
  --cream:      #fff7ec;
  --mint:       #eaf4ee;
  --peach:      #fce6d3;
  --white:      #ffffff;
  --muted:      #5d6b66;
  --line:       #ece2d3;

  --shadow-sm: 0 2px 10px rgba(22, 48, 43, .06);
  --shadow-md: 0 14px 40px rgba(22, 48, 43, .10);
  --shadow-lg: 0 26px 70px rgba(22, 48, 43, .16);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.4rem);

  --f-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --f-body: "Nunito", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--honey-deep); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
}

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.eyebrow {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--honey);
  border-radius: 2px;
}

.section { padding-block: clamp(3.4rem, 8vw, 6rem); }
.section--mint { background: var(--mint); }
.section--forest { background: var(--forest); color: var(--white); }
.section--forest h2,
.section--forest h3 { color: var(--white); }

/* ---- Skip link ---- */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--r-sm) 0; z-index: 200;
}
.skip:focus { left: 0; color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 600; font-size: 1rem;
  padding: .82rem 1.5rem; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--forest); outline-offset: 3px; }
.btn--primary { background: var(--honey); color: var(--ink); box-shadow: 0 8px 22px rgba(246,168,33,.4); }
.btn--primary:hover { background: var(--honey-deep); color: var(--ink); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--honey); color: var(--ink); transform: translateY(-2px); }

/* =========================================================
   Header / nav  (CSS-only mobile menu)
   ========================================================= */
.topbar {
  background: var(--ink); color: #fff;
  font-size: .86rem; font-weight: 600;
}
.topbar .wrap {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
  padding-block: .5rem; text-align: center;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--honey); }
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,247,236,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
}
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--f-display); font-weight: 700; font-size: 1.28rem; color: var(--ink); }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--honey); }
.brand span small { display: block; font-family: var(--f-body); font-weight: 700; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--honey-deep); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--f-display); font-weight: 500; color: var(--ink);
  padding: .5rem .85rem; border-radius: var(--r-pill); font-size: .98rem;
  transition: background .15s, color .15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { background: var(--peach); color: var(--ink); }
.nav-cta { margin-left: .4rem; }

.nav-toggle, .nav-toggle-label { display: none; }

@media (max-width: 860px) {
  .nav-cta.desktop-only { display: none; }
  .nav-toggle-label {
    display: inline-flex; flex-direction: column; gap: 5px;
    width: 46px; height: 46px; align-items: center; justify-content: center;
    border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; cursor: pointer;
  }
  .nav-toggle-label span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .8rem var(--pad) 1.3rem;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .3s ease, opacity .25s ease;
  }
  .nav-links a { padding: .8rem 1rem; }
  .nav-links .btn { justify-content: center; margin-top: .4rem; }
  .nav-toggle:checked ~ .nav-links { max-height: 460px; opacity: 1; pointer-events: auto; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .4rem .9rem .4rem .5rem; font-weight: 700; font-size: .82rem; color: var(--forest);
  box-shadow: var(--shadow-sm); margin-bottom: 1.3rem;
}
.hero-badge b { background: var(--honey); color: var(--ink); border-radius: var(--r-pill); padding: .15rem .55rem; font-family: var(--f-display); }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); font-weight: 700; }
.hero h1 .hl { color: var(--forest); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em;
  background: var(--honey); opacity: .45; border-radius: var(--r-pill); z-index: -1;
}
.hero-lead { font-size: 1.14rem; color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-trust { display: flex; gap: 1.8rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-trust div strong { font-family: var(--f-display); font-size: 1.7rem; color: var(--ink); display: block; line-height: 1; }
.hero-trust div span { font-size: .86rem; color: var(--muted); font-weight: 600; }

/* Organic blob image frame — the recurring signature shape */
.blob {
  position: relative;
  border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  border: 6px solid #fff;
}
.blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { position: relative; }
.hero-media .paw-float {
  position: absolute; width: 74px; opacity: .9;
  filter: drop-shadow(0 6px 12px rgba(22,48,43,.18));
}
.hero-media .paw-float.p1 { top: -14px; left: -10px; transform: rotate(-18deg); }
.hero-media .paw-float.p2 { bottom: 4px; right: -12px; width: 58px; transform: rotate(24deg); }
.hero-chip {
  position: absolute; bottom: 18px; left: -14px;
  background: #fff; border-radius: var(--r-md); padding: .7rem 1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: .9rem;
}
.hero-chip .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; font-size: 1.1rem; }

/* =========================================================
   Paw-trail divider (signature)
   ========================================================= */
.pawtrail {
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
  padding-block: 1.6rem;
}
.pawtrail img { width: 30px; opacity: .5; }
.pawtrail img:nth-child(2) { width: 24px; opacity: .35; transform: translateY(-8px) rotate(12deg); }
.pawtrail img:nth-child(3) { width: 36px; opacity: .6; }
.pawtrail img:nth-child(4) { width: 24px; opacity: .35; transform: translateY(-8px) rotate(-12deg); }
.pawtrail img:nth-child(5) { width: 30px; opacity: .5; }

/* =========================================================
   Section heading block
   ========================================================= */
.sec-head { max-width: 42rem; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.sec-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.section--forest .sec-head p { color: rgba(255,255,255,.82); }

/* =========================================================
   Service cards
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; }
.card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--mint); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  align-self: flex-start; font-family: var(--f-display); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--honey-deep);
  background: var(--cream); border-radius: var(--r-pill); padding: .28rem .7rem; margin-bottom: .8rem;
}
.card h3 { font-size: 1.28rem; margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.card-link { margin-top: auto; font-family: var(--f-display); font-weight: 600; color: var(--forest); display: inline-flex; align-items: center; gap: .35rem; }
.card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* =========================================================
   Feature / why-us list
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.6rem); align-items: center; }
.feature-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--mint); color: var(--forest); display: grid; place-items: center; font-size: 1.2rem; }
.section--forest .feature-list .ic { background: rgba(255,255,255,.12); color: var(--honey); }
.feature-list b { font-family: var(--f-display); display: block; }
.feature-list p { margin: .15rem 0 0; color: var(--muted); font-size: .95rem; }
.section--forest .feature-list p { color: rgba(255,255,255,.8); }

/* =========================================================
   Stats strip
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.stat { background: #fff; border-radius: var(--r-md); padding: 1.6rem 1.4rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.stat strong { font-family: var(--f-display); font-size: 2.2rem; color: var(--forest); display: block; line-height: 1; }
.stat span { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* =========================================================
   Area / local SEO chips
   ========================================================= */
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.area-chips li { list-style: none; }
.area-chips span {
  display: inline-block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .5rem 1rem; font-weight: 700; font-size: .9rem; color: var(--forest);
}

/* =========================================================
   Testimonial
   ========================================================= */
.quote { max-width: 46rem; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--f-display); font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 500; line-height: 1.35; margin: 0 0 1.1rem; color: var(--white); }
.quote figcaption { font-weight: 700; color: var(--honey); }
.stars { color: var(--honey); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 1rem; }

/* =========================================================
   FAQ (details/summary)
   ========================================================= */
.faq { max-width: 46rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: .3rem 1.3rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--f-display); font-weight: 600;
  font-size: 1.08rem; padding: 1rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--honey-deep); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 1rem; margin: 0; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: var(--honey); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.cta-band p { color: rgba(22,48,43,.75); max-width: 34rem; margin-inline: auto; font-weight: 600; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); margin-bottom: 1.1rem; }
.info-card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.info-card .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--mint); color: var(--forest); display: grid; place-items: center; font-size: 1.15rem; flex: none; }
.info-card p { margin: 0; color: var(--muted); }
.info-card a { font-weight: 700; }
.map-embed { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form label { display: block; font-family: var(--f-display); font-weight: 600; margin-bottom: .35rem; font-size: .95rem; }
.field { margin-bottom: 1.1rem; }
.form input, .form textarea, .form select {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--cream);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(30,95,85,.15); background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }

/* =========================================================
   Breadcrumbs
   ========================================================= */
.crumbs { font-size: .86rem; color: var(--muted); padding-top: 1.4rem; }
.crumbs a { font-weight: 700; }
.crumbs span { margin-inline: .4rem; opacity: .6; }

/* =========================================================
   Blog cards
   ========================================================= */
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post .card-media { aspect-ratio: 16 / 10; }
.post-body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .8rem; color: var(--honey-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.post h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.post p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: 3.4rem 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; font-family: var(--f-display); }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--honey); }
.footer-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; color: #fff; margin-bottom: .9rem; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--honey); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; font-weight: 700; transition: background .18s; }
.footer-social a:hover { background: var(--honey); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45); font-size: 1.7rem;
  transition: transform .18s;
}
.fab:hover { transform: scale(1.08); color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.2rem; }
  .footer-bottom { flex-direction: column; }
}

/* Motion / a11y */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 3px solid var(--forest); outline-offset: 2px; border-radius: 4px; }

/* =========================================================
   Blog article / post pages
   ========================================================= */
.article-hero { padding-block: 1.4rem clamp(1.6rem, 4vw, 2.4rem); }
.article-cat {
  display: inline-block; font-family: var(--f-display); font-weight: 600;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--honey-deep); background: var(--peach);
  border-radius: var(--r-pill); padding: .3rem .85rem; margin-bottom: 1rem;
}
.article-hero h1 { font-size: clamp(2rem, 4.8vw, 3rem); max-width: 20ch; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center;
  color: var(--muted); font-size: .9rem; font-weight: 600; margin-top: 1rem;
}
.article-meta .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--forest); color: #fff; display: inline-grid; place-items: center;
  font-family: var(--f-display); font-size: .9rem;
}
.article-lead-img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 5px solid #fff; margin: 1.8rem 0 0; aspect-ratio: 16 / 8;
}
.article-lead-img img { width: 100%; height: 100%; object-fit: cover; }

.article { max-width: 46rem; margin-inline: auto; }
.article-body { font-size: 1.08rem; color: #2c3a35; }
.article-body > p:first-of-type { font-size: 1.18rem; color: var(--ink); }
.article-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2.4rem; margin-bottom: .7rem;
  padding-top: 1.2rem; border-top: 2px dashed var(--line);
}
.article-body h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.article-body li { margin-bottom: .55rem; }
.article-body li::marker { color: var(--honey-deep); }
.article-body a { font-weight: 700; text-decoration: underline; text-decoration-color: var(--honey); text-underline-offset: 3px; }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  margin: 1.6rem 0; padding: 1rem 1.4rem; border-left: 4px solid var(--honey);
  background: var(--mint); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--f-display); font-size: 1.15rem; color: var(--forest);
}
.callout {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--forest);
  border-radius: var(--r-md); padding: 1.1rem 1.3rem; margin: 1.6rem 0; box-shadow: var(--shadow-sm);
}
.callout b { font-family: var(--f-display); display: block; margin-bottom: .3rem; color: var(--forest); }
.callout p { margin: 0; font-size: .98rem; color: var(--muted); }

.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0 0; }
.article-tags span {
  font-size: .82rem; font-weight: 700; color: var(--forest);
  background: var(--mint); border-radius: var(--r-pill); padding: .35rem .85rem;
}

.article-inline-cta {
  background: var(--forest); color: #fff; border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem; margin: 2.2rem 0; text-align: center; box-shadow: var(--shadow-md);
}
.article-inline-cta h3 { color: #fff; margin-bottom: .4rem; }
.article-inline-cta p { color: rgba(255,255,255,.85); margin-bottom: 1rem; font-size: .98rem; }

.article-faq { margin-top: 2.4rem; }
.article-faq h2 { border-top: 2px dashed var(--line); padding-top: 1.2rem; }

/* =========================================================
   PageSpeed / accessibility fixes
   ========================================================= */

/* Links in running text: distinguish by underline, not colour alone */
.topbar a,
.info-card a,
.footer-links a,
p a,
address a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.footer-links a { text-decoration-color: rgba(255,255,255,.4); }

/* Touch targets: min 44px tap area + spacing */
.nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
.topbar a { display: inline-block; padding: 4px 2px; min-height: 24px; }
.footer-links a { display: inline-block; padding: 6px 0; min-height: 24px; }
.footer-social a { width: 44px; height: 44px; }
.card-link { min-height: 44px; align-items: center; }
.crumbs a { display: inline-block; padding: 6px 2px; }
.info-card a { display: inline-block; padding: 4px 0; }
@media (max-width: 860px) {
  .nav-links a { min-height: 48px; }
}

/* Prevent layout shift: images keep intrinsic ratio */
.hero-media img, .card-media img, .article-lead-img img, .blob img { height: auto; }
.card-media img, .blob img, .article-lead-img img { height: 100%; }

/* Footer credit link */
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(255,255,255,.45); font-weight: 700; }
