:root {
  --brand: #137a43;
  --brand-dark: #0e6b4f;
  --brand-deep: #0b3d2c;
  --mint: #e7f5ea;
  --mint-2: #d4eedb;
  --cream: #f7faf6;
  --ink: #13241b;
  --muted: #56675d;
  --line: #dfe9e1;
  --white: #fff;
  --accent: #f28c28;
  --warn-bg: #fff4e8;
  --warn-ink: #9a4a05;
  --ok-bg: #e8f7ee;
  --ok-ink: #11683a;
  --radius: 20px;
  --shadow: 0 1px 2px rgba(15, 50, 30, 0.06), 0 8px 28px rgba(15, 50, 30, 0.08);
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color-scheme: light;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-underline-offset: 3px; }
a:hover { color: var(--brand); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.015em; }
h1, h2 { font-family: var(--display); font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--brand-deep); outline-offset: 2px; border-radius: 6px; }
.stats :focus-visible, .beyond :focus-visible, .cta-inner :focus-visible { outline-color: #fff; }

.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }
.wrap.narrow { width: min(780px, 100% - 32px); }
.center { text-align: center; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brand-deep); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.fine { font-size: .85rem; color: var(--muted); }

/* ---------- buttons, chips ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .8em 1.4em; border-radius: 999px; font-weight: 600; text-decoration: none;
  border: 2px solid transparent; transition: background .15s, transform .15s; cursor: pointer; font-size: 1rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-sm { padding: .5em 1.1em; font-size: .92rem; }
.chip { display: inline-block; font-size: .75rem; font-weight: 600; padding: .2em .65em; border-radius: 999px; background: var(--mint); color: var(--brand-dark); }
.chip-warn { background: var(--warn-bg); color: var(--warn-ink); }
.chip-ok { background: var(--ok-bg); color: var(--ok-ink); }

.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 1.5rem 0; }
.badge { display: block; border-radius: 10px; transition: transform .15s; }
.badge:hover { transform: translateY(-2px); }
.badge img { height: 50px; width: auto; }
.badges-sm .badge img { height: 40px; }
.badges-center { justify-content: center; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .9); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
.brand img { border-radius: 10px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.main-nav a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .96rem; }
.main-nav a:not(.btn):hover, .main-nav a[aria-current='page'] { color: var(--brand); }
.language-picker {
  position: relative; display: inline-flex; align-items: center; min-width: 142px; height: 40px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink);
}
.language-picker > .icon:first-child { width: 18px; height: 18px; margin-left: 12px; color: var(--brand-dark); pointer-events: none; }
.language-picker select {
  width: 100%; height: 100%; border: 0; outline: 0; appearance: none; background: transparent;
  padding: 0 32px 0 8px; color: inherit; font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
}
.language-picker:focus-within { outline: 3px solid var(--brand-deep); outline-offset: 2px; }
.language-picker .language-chevron { position: absolute; right: 10px; width: 16px; height: 16px; pointer-events: none; }
.google-translate-host { position: fixed; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.goog-te-banner-frame.skiptranslate,
iframe.VIpgJd-ZVi9od-ORHb-OEVmcd,
.goog-te-balloon-frame,
#goog-gt-tt { display: none !important; }
html, body { top: 0 !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle .i-close { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 16px 20px; display: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .language-picker { width: 100%; margin-top: 14px; border-radius: 12px; }
  .nav-cta { margin-top: 16px; }
  .nav-open .main-nav { display: flex; }
  .nav-open .nav-toggle .i-open { display: none; }
  .nav-open .nav-toggle .i-close { display: block; }
}

/* ---------- hero ---------- */
.hero { background: radial-gradient(1200px 500px at 85% -10%, var(--mint-2), transparent 60%), linear-gradient(180deg, var(--cream), #fff); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 64px 0 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: .8rem; }
.hl { color: var(--brand); position: relative; z-index: 0; white-space: nowrap; }
.hl::after { content: ''; position: absolute; left: 0; right: 0; bottom: .05em; height: .28em; background: var(--mint-2); z-index: -1; border-radius: 4px; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 38em; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone { width: min(320px, 78%); border-radius: 44px; overflow: hidden; box-shadow: 0 30px 60px rgba(11, 61, 44, .22), 0 0 0 1px rgba(0, 0, 0, .04); transform: rotate(2deg); background: #0e6b4f; }
.float {
  position: absolute; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 16px;
  padding: 10px 14px; box-shadow: var(--shadow); font-size: .85rem; line-height: 1.25; animation: bob 6s ease-in-out infinite;
}
.float .icon { width: 34px; height: 34px; padding: 7px; border-radius: 10px; background: var(--mint); color: var(--brand-dark); }
.float strong { display: block; }
.float em { color: var(--muted); font-style: normal; font-size: .8rem; }
.float-a { top: 16%; left: 0; }
.float-b { top: 50%; right: 0; animation-delay: -2s; }
.float-c { bottom: 10%; left: 4%; animation-delay: -4s; }
.float-c .icon { background: var(--warn-bg); color: var(--warn-ink); }
@keyframes bob { 50% { transform: translateY(-8px); } }

.qr-card { display: inline-flex; align-items: center; gap: 14px; padding: 10px 16px 10px 10px; background: #fff; border: 1px solid var(--line); border-radius: 16px; font-size: .9rem; color: var(--muted); }
.qr-card img { border-radius: 8px; }
.qr-card strong { display: block; color: var(--ink); }
.is-mobile [data-desktop-only] { display: none; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 56px; text-align: center; }
  .hero-copy .badges { justify-content: center; }
  .lead { margin-inline: auto; }
  .qr-card { display: none; }
  .float { font-size: .78rem; padding: 8px 10px; }
  .float .icon { width: 28px; height: 28px; padding: 5px; }
  .float-a { left: 0; }
}

/* ---------- stats ---------- */
.stats { background: var(--brand-deep); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 0; text-align: center; }
.stats strong { display: block; font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.1; }
.stats span { color: #b8d8c6; font-size: .92rem; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- sections ---------- */
.section { padding: 88px 0; }
.section.tight { padding: 48px 0; }
.section.soft { background: var(--cream); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-head-row h2 { margin-bottom: 0; }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; text-decoration: none; }
@media (max-width: 700px) { .section { padding: 60px 0; } .section-head { margin-bottom: 32px; } }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.steps li { background: var(--cream); border-radius: var(--radius); padding: 28px; position: relative; counter-increment: s; }
.steps li::before { content: counter(s); position: absolute; top: 20px; right: 24px; font-family: var(--display); font-size: 3rem; color: var(--mint-2); line-height: 1; }
.steps p { color: var(--muted); margin: 0; }
.step-icon, .care-icon, .tool-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand); color: #fff; margin-bottom: 16px;
}
.step-icon .icon, .care-icon .icon, .tool-icon .icon { width: 26px; height: 26px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 32px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature-media { background: linear-gradient(160deg, var(--mint), var(--cream)); border-radius: 28px; padding: 32px; display: flex; justify-content: center; }
.feature-media img { width: min(300px, 100%); border-radius: 18px; box-shadow: var(--shadow); }
.feature-flip .feature-media { order: 2; }
.kicker { display: inline-flex; align-items: center; gap: .45em; color: var(--brand); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.feature h3 { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2rem); }
.feature-copy > p { color: var(--muted); }
.ticks { list-style: none; padding: 0; margin: 1.2em 0 0; display: grid; gap: .6em; }
.ticks li { display: flex; gap: .6em; align-items: flex-start; }
.ticks .icon { color: #fff; background: var(--brand); border-radius: 50%; padding: 3px; width: 22px; height: 22px; margin-top: 2px; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature-flip .feature-media { order: 0; }
  .feature-media { padding: 20px; }
  .feature-media img { width: min(200px, 100%); }
}

.tools { background: var(--cream); }
.tool-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool-grid li { background: #fff; border-radius: 18px; padding: 22px; border: 1px solid var(--line); }
.tool-grid strong { display: block; }
.tool-grid span:last-child { color: var(--muted); font-size: .92rem; }
.tool-icon { width: 44px; height: 44px; background: var(--mint); color: var(--brand-dark); margin-bottom: 12px; }
.tool-icon .icon { width: 22px; height: 22px; }
@media (max-width: 960px) { .tool-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tool-grid { grid-template-columns: 1fr; } }

.beyond { background: var(--brand-deep); color: #fff; }
.beyond .eyebrow { color: #9fe0b8; }
.beyond p { color: #c9e3d4; }
.beyond-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.beyond .note { display: flex; gap: .5em; align-items: flex-start; font-size: .92rem; color: #ffd5a8; }
.beyond-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.beyond-grid li { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; padding: 22px 12px; display: grid; justify-items: center; gap: 10px; text-align: center; font-weight: 600; }
.beyond-grid .icon { width: 34px; height: 34px; color: #9fe0b8; }
@media (max-width: 860px) { .beyond-inner { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .beyond-grid { grid-template-columns: repeat(2, 1fr); } }

.scroller-btns { display: flex; gap: 8px; }
.round-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.round-btn:hover { background: var(--mint); }
.scroller {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: max(16px, (100% - 1180px) / 2);
  padding: 8px max(16px, (100% - 1180px) / 2) 24px; scrollbar-width: thin;
}
.scroller img { width: 240px; flex: none; border-radius: 18px; scroll-snap-align: start; box-shadow: var(--shadow); }
@media (max-width: 600px) { .scroller img { width: 200px; } .scroller-btns { display: none; } }

/* ---------- cards ---------- */
.plant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plant-grid.four { grid-template-columns: repeat(4, 1fr); }
.plant-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--ink); text-decoration: none; transition: transform .15s, box-shadow .15s; }
.plant-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.plant-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.plant-card-body { padding: 16px 18px 18px; display: grid; gap: 2px; }
.plant-card strong { font-size: 1.08rem; }
.plant-card em { color: var(--muted); font-size: .92rem; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
@media (max-width: 960px) { .plant-grid, .plant-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .plant-grid, .plant-grid.four { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .plant-card-body { padding: 10px 12px 12px; }
  .plant-card strong { font-size: .98rem; }
  .plant-card em { font-size: .82rem; }
}

.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guide-card { display: flex; flex-direction: column; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; color: var(--ink); text-decoration: none; transition: transform .15s, box-shadow .15s; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.guide-card > span:not(.guide-icon):not(.guide-meta) { color: var(--muted); font-size: .94rem; }
.guide-card strong { font-size: 1.05rem; line-height: 1.35; }
.guide-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--mint); color: var(--brand-dark); display: grid; place-items: center; }
.guide-meta { margin-top: auto; font-size: .82rem; font-weight: 600; color: var(--brand); }
@media (max-width: 1060px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .guide-grid { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-weight: 600; font-size: 1.08rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { transition: transform .2s; color: var(--brand); }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq details p { color: var(--muted); padding-bottom: 12px; }

/* ---------- cta ---------- */
.cta-band { padding: 0 0 88px; }
.cta-inner { background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark)); color: #fff; border-radius: 32px; padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner p { color: #d8f1e2; }
.cta-inner .badges { margin-bottom: 0; }
.cta-icon { border-radius: 28px; box-shadow: 0 20px 40px rgba(0, 0, 0, .2); transform: rotate(-6deg); }
@media (max-width: 700px) { .cta-inner { padding: 36px 24px; flex-direction: column-reverse; text-align: center; } .cta-inner .badges { justify-content: center; } .cta-icon { width: 88px; } }

/* ---------- inner pages ---------- */
.page-hero { background: linear-gradient(180deg, var(--cream), #fff); padding: 40px 0 32px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 20px; font-size: .88rem; color: var(--muted); }
.crumbs li + li::before { content: '/'; margin-right: 6px; color: #aab8ae; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand); }

.finder { margin-top: 24px; display: grid; gap: 16px; }
.search-box { display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 0 20px; max-width: 560px; }
.search-box:focus-within { border-color: var(--brand); }
.search-box .icon { color: var(--muted); }
.search-box input { border: 0; outline: 0; flex: 1; font: inherit; padding: 14px 0; background: transparent; min-width: 0; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn { font: inherit; font-size: .9rem; font-weight: 600; padding: .45em 1em; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--ink); }
.chip-btn[aria-pressed='true'] { background: var(--brand); border-color: var(--brand); color: #fff; }
.result-count { color: var(--muted); font-size: .92rem; }
.empty { text-align: center; padding: 40px 0; color: var(--muted); }
.empty .badges { justify-content: center; }

.plant-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.sci { font-style: italic; font-size: 1.2rem; color: var(--brand-dark); margin-top: -.3em; }
.aka { color: var(--muted); font-size: .95rem; }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.facts div { flex: 1 1 auto; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.facts dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 600; }
.facts dd { margin: 2px 0 0; font-weight: 600; }
.plant-photo { margin: 0; }
.plant-photo img { border-radius: 24px; width: 100%; max-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.plant-photo figcaption { font-size: .78rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 860px) { .plant-hero-grid { grid-template-columns: 1fr; } .plant-photo { order: -1; } .plant-photo img { max-height: 360px; } }

.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.care-card { background: var(--cream); border-radius: 18px; padding: 22px; }
.care-card p { margin: 0; color: var(--muted); }
.care-card .care-icon { width: 44px; height: 44px; margin-bottom: 12px; }
.care-card .care-icon .icon { width: 22px; height: 22px; }
@media (max-width: 860px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .care-grid { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.two-col h2 { font-size: 1.6rem; }
.problems { margin: 0 0 32px; display: grid; gap: 12px; }
.problems div { border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.problems dt { font-weight: 700; display: flex; gap: .5em; align-items: center; }
.problems dt .icon { color: var(--accent); }
.problems dd { margin: 4px 0 0; color: var(--muted); }
.prop { display: flex; gap: .7em; align-items: flex-start; color: var(--muted); }
.prop .icon { color: var(--brand); margin-top: 3px; }
.callout { border-radius: 18px; padding: 20px 22px; background: var(--mint); margin: 24px 0; }
.callout.warn { background: var(--warn-bg); }
.callout.ok { background: var(--ok-bg); }
.callout-title { display: flex; gap: .5em; align-items: center; font-family: var(--sans); font-size: 1.1rem !important; }
.callout p:last-child { margin-bottom: 0; }
.app-promo { border: 1px solid var(--line); border-radius: 18px; padding: 24px; text-align: center; }
.app-promo img { margin: 0 auto 12px; border-radius: 14px; }
.app-promo h2 { font-size: 1.3rem !important; }
.app-promo p { color: var(--muted); }
.reviewed { margin-top: 32px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 16px; } }

.byline { color: var(--muted); font-size: .92rem; }
.prose { padding-bottom: 56px; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose ul.ticks { padding-left: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--cream); }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.contact-card { display: grid; gap: 4px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
.contact-card:hover { box-shadow: var(--shadow); color: var(--ink); }
.contact-card span:last-child { color: var(--muted); }
@media (max-width: 600px) { .contact-cards { grid-template-columns: 1fr; } }

.download { padding: 72px 0 96px; }
.dl-icon { margin: 0 auto 20px; border-radius: 24px; box-shadow: var(--shadow); }
.download .qr-card { margin-top: 8px; }

/* ---------- footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 56px 0 24px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--muted); max-width: 26em; margin-top: 12px; }
.site-footer h2 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a:not(.brand):not(.badge) { color: var(--ink); text-decoration: none; }
.site-footer a:not(.brand):not(.badge):hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: var(--muted); }
.footer-bottom p { margin: 0; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
