/* ============ Variables ============ */
:root {
  --green-900: #1b5e20;
  --green-700: #2e7d32;
  --green-600: #388e3c;
  --green-500: #43a047;
  --green-100: #e8f5e9;
  --leaf: #66bb6a;
  --whatsapp: #25d366;
  --text: #1f2a24;
  --text-soft: #4a5a52;
  --muted: #6b7770;
  --bg: #ffffff;
  --bg-soft: #f5faf6;
  --line: #d8e3dc;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --font: "Heebo", "Assistant", "Rubik", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ============ Reset / Base ============ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
h1,h2,h3,h4 { line-height: 1.25; margin: 0 0 .5em; color: var(--text); }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul { padding-inline-start: 1.2em; margin: 0 0 1em; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

.skip-link {
  position: absolute; right: -1000px; top: 0;
  background: var(--green-700); color: #fff; padding: 8px 14px;
  z-index: 9999; border-radius: 0 0 6px 6px;
}
.skip-link:focus { right: 8px; outline: 3px solid #ffd54f; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1; min-height: 44px;
}
.btn svg { width: 20px; height: 20px; }
.btn-large { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-primary:hover { background: var(--green-900); border-color: var(--green-900); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; text-decoration: none; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--green-900); text-decoration: none; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; background: #fff;
  padding: 4px; box-shadow: var(--shadow-md);
  border: 2px solid var(--green-100);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.2rem; color: var(--green-900); white-space: nowrap; }
.brand-sub { font-size: .82rem; color: var(--muted); white-space: nowrap; }
@media (max-width: 1100px) {
  .brand-logo { width: 60px; height: 60px; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: .78rem; }
}
@media (max-width: 600px) {
  .brand-logo { width: 56px; height: 56px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .72rem; }
}

.main-nav ul { display: flex; gap: 2px; list-style: none; padding: 0; margin: 0; flex-wrap: nowrap; }
.main-nav a {
  padding: 8px 10px; border-radius: 8px;
  color: var(--text-soft); font-weight: 600; font-size: .9rem;
  white-space: nowrap; display: inline-block;
}
.main-nav a:hover { background: var(--green-100); color: var(--green-900); text-decoration: none; }
.main-nav a.active { color: var(--green-900); background: var(--green-100); }
@media (max-width: 1200px) {
  .main-nav a { padding: 8px 8px; font-size: .85rem; }
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--green-900); border-radius: 3px; transition: transform .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 12px; gap: 4px; }
  .main-nav a { display: block; padding: 14px; font-size: 1rem; }
}

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 620px;
  display: flex; align-items: center;
  color: #fff;
}
.hero-carousel { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1.03);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.45) 100%),
    linear-gradient(120deg, rgba(46,125,50,.35) 0%, rgba(27,94,32,.15) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 70px 20px 90px; }
.hero h1 {
  color: #fff; font-weight: 800;
  text-shadow: 0 3px 20px rgba(0,0,0,.75), 0 1px 3px rgba(0,0,0,.55);
  margin-bottom: .4em;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 680px; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.55);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px;
}
.hero-badges .badge {
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  padding: 12px 16px; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; min-width: 170px;
}
.hero-badges strong { font-size: 1rem; }
.hero-badges span { font-size: .85rem; color: #d8ebd9; }

.hero-dots {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 3;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 0; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.hero-dots button.active { background: #fff; transform: scale(1.3); }

/* ============ Sections ============ */
.section { padding: 70px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-title { text-align: center; color: var(--green-900); margin-bottom: .3em; }
.section-subtitle { text-align: center; color: var(--text-soft); margin-bottom: 40px; font-size: 1.05rem; }

/* services */
.services-preview { background: var(--bg-soft); }
.services-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 36px;
}
.service-card {
  display: block; background: #fff; padding: 26px 22px;
  border-radius: var(--radius); border: 1px solid var(--line);
  text-decoration: none; color: var(--text);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.service-card:hover {
  text-decoration: none; transform: translateY(-3px);
  box-shadow: var(--shadow-md); border-color: var(--green-500);
}
.service-icon { font-size: 2.4rem; margin-bottom: 10px; }
.service-card h3 { color: var(--green-900); margin-bottom: 8px; }
.service-card p { color: var(--text-soft); font-size: .95rem; margin: 0; }

/* why */
.why-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.why-item {
  position: relative;
  padding: 28px 22px 22px; background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .25s;
}
.why-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff; font-size: 1.8rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(46,125,50,.3);
}
.why-item h3 { color: var(--green-900); }

/* Three categories cards on homepage */
.main-cats {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.main-cat {
  background: #fff; padding: 30px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .25s;
}
.main-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.main-cat img {
  width: 72px; height: 72px;
  padding: 14px;
  background: var(--green-100);
  border-radius: 50%;
  display: inline-block;
}
.main-cat h3 { color: var(--green-900); margin: 14px 0 8px; font-size: 1.25rem; }
.main-cat p { color: var(--text-soft); margin: 0; }

/* areas */
.areas { background: var(--bg-soft); }
.areas-list {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.areas-list li {
  background: #fff; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); text-align: center; font-weight: 600;
  color: var(--green-900);
}

/* contact */
.contact-section { background: var(--green-100); }
.contact-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr 1fr; align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { list-style: none; padding: 0; }
.contact-info li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-info strong { color: var(--green-900); margin-inline-end: 8px; }

.contact-form {
  background: #fff; padding: 26px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { color: var(--green-900); margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 14px; font-weight: 500; }
.contact-form label > span { display: block; margin-bottom: 6px; color: var(--text-soft); font-size: .95rem; }
.contact-form em { color: #c62828; font-style: normal; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 0; border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(67,160,71,.15);
}
.contact-form .checkbox { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; }
.contact-form .checkbox input { width: auto; margin-top: 4px; }
.form-status { min-height: 1.2em; margin-top: 10px; font-weight: 600; }
.form-status.success { color: var(--green-700); }
.form-status.error { color: #c62828; }

/* ============ Footer ============ */
.site-footer { background: #14361a; color: #d2e4d5; margin-top: 0; }
.site-footer h4 { color: #fff; margin-bottom: 12px; }
.site-footer a { color: #b5d4ba; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 30px; padding: 50px 20px 30px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { padding: 4px 0; }
.footer-logo { width: 110px; height: 110px; border-radius: 50%; margin-bottom: 12px; background: #fff; padding: 6px; }
.ministry-badge { width: 130px; margin-top: 12px; background: #fff; padding: 6px; border-radius: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0; font-size: .9rem; color: #a3bea8;
}

/* ============ Floating CTA ============ */
.floating-cta {
  position: fixed; bottom: 18px; left: 18px;
  display: flex; flex-direction: column; gap: 10px; z-index: 90;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-lg);
  transition: transform .15s ease;
}
.fab:hover { transform: scale(1.07); text-decoration: none; }
.fab svg { width: 28px; height: 28px; }
.fab-whatsapp { background: var(--whatsapp); }
.fab-call { background: var(--green-700); }
.fab-call::after {
  content: ""; position: absolute; width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-700); opacity: .35;
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .45; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============ Accessibility widget ============ */
.accessibility-btn {
  position: fixed; bottom: 18px; right: 18px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: #1565c0; color: #fff; border: 0; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.accessibility-btn svg { width: 28px; height: 28px; }
.access-panel {
  position: fixed; bottom: 78px; right: 18px; z-index: 91;
  background: #fff; padding: 18px; width: 240px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.access-panel h3 { margin-top: 0; color: var(--green-900); font-size: 1rem; }
.access-panel button {
  display: block; width: 100%; text-align: right;
  padding: 8px 10px; margin-bottom: 6px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; font-size: .9rem;
}
.access-panel button:hover { background: var(--green-100); }
.access-panel p { margin: 8px 0 0; font-size: .85rem; }

/* ============ High contrast mode ============ */
body.access-contrast {
  background: #000 !important; color: #fff !important;
}
body.access-contrast .site-header,
body.access-contrast .service-card,
body.access-contrast .contact-form,
body.access-contrast .access-panel,
body.access-contrast .areas-list li,
body.access-contrast .why-item {
  background: #000 !important; color: #fff !important; border-color: #fff !important;
}
body.access-contrast a, body.access-contrast h1, body.access-contrast h2, body.access-contrast h3 { color: #ffeb3b !important; }
body.access-grayscale { filter: grayscale(100%); }
body.access-links a { text-decoration: underline !important; font-weight: 800 !important; }

/* ============ Inner page hero ============ */
.page-hero {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff; padding: 80px 20px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero[data-hero] {
  background-size: cover; background-position: center;
}
.page-hero[data-hero]::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.0) 35%, rgba(0,0,0,.0) 65%, rgba(0,0,0,.45) 100%);
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.75), 0 1px 3px rgba(0,0,0,.9); }
.page-hero p { color: #fff; max-width: 700px; margin: 0 auto; text-shadow: 0 2px 8px rgba(0,0,0,.75), 0 1px 2px rgba(0,0,0,.85); }

/* ============ Article (legal pages) ============ */
.article { max-width: 820px; margin: 0 auto; padding: 50px 20px; }
.article h2 { color: var(--green-900); margin-top: 1.5em; }
.article h3 { color: var(--green-700); margin-top: 1.2em; }
.article ul { padding-inline-start: 1.4em; }
.article li { margin-bottom: 6px; }

/* ============ Prices table ============ */
.price-list { background: var(--bg-soft); }
.price-table {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--line); gap: 16px;
}
.price-row:last-child { border-bottom: 0; }
.price-row:nth-child(even) { background: var(--bg-soft); }
.price-row .item { font-weight: 600; color: var(--text); }
.price-row .price { color: var(--green-700); font-weight: 700; white-space: nowrap; }
.price-note {
  margin-top: 14px; padding: 14px; background: #fff8e1;
  border-right: 4px solid #ffb300; border-radius: var(--radius-sm);
  font-size: .92rem;
}

/* ============ Testimonials ============ */
.testimonials {
  background: linear-gradient(135deg, #f8fbf8 0%, #e8f5e9 100%);
}
.testimonials-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial-card {
  background: #fff; padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"'; position: absolute; top: -8px; right: 16px;
  font-size: 4rem; color: var(--green-500); line-height: 1;
  font-family: serif; opacity: .25;
}
.testimonial-stars { color: #fbc02d; font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-style: italic; margin-bottom: 14px; line-height: 1.6; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.testimonial-info strong { display: block; color: var(--green-900); }
.testimonial-info span { color: var(--muted); font-size: .88rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--green-900); gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; width: 28px; height: 28px;
  border-radius: 50%; background: var(--green-100); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; line-height: 1; flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq-item[open] summary::after { content: "−"; background: var(--green-700); color: #fff; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-body {
  padding: 0 22px 22px;
  color: var(--text-soft); line-height: 1.7;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin: 0; }

/* ============ Scroll-to-top button ============ */
.scroll-top {
  position: fixed; bottom: 150px; left: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  border: 0; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, background .2s;
  z-index: 89;
  display: inline-flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--green-900); }
.scroll-top:hover.visible { transform: translateY(-2px); }
.scroll-top svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  .scroll-top { bottom: 142px; left: 18px; width: 40px; height: 40px; }
}

/* ============ Trust strip ============ */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.trust-strip-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 28px; flex-wrap: wrap;
  color: var(--text-soft); font-size: .92rem; font-weight: 500;
}
.trust-strip-inner > div {
  display: flex; align-items: center; gap: 6px;
}
.trust-strip-inner strong { color: var(--green-900); }
.trust-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-500); color: #fff; font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}

/* ============ Promo banner (30% discount) ============ */
.promo-banner {
  background: linear-gradient(135deg, #ffb300 0%, #ff9100 100%);
  color: #1f1300; padding: 12px 20px;
  text-align: center; font-weight: 600;
  font-size: .98rem;
}
.promo-banner strong { font-size: 1.1rem; color: #5d2e00; }
.promo-banner a { color: #5d2e00; text-decoration: underline; font-weight: 700; }

.promo-card {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
  border: 2px solid #ffb300; border-radius: var(--radius);
  padding: 24px; margin: 30px auto;
  max-width: 800px; text-align: center;
}
.promo-card h3 { color: #b87800; margin-top: 0; }
.promo-card .promo-tag {
  display: inline-block; background: #b87800; color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-weight: 700; font-size: .85rem; margin-bottom: 10px;
}

/* ============ Emergency contact ============ */
.emergency-note {
  background: #ffebee; border-right: 4px solid #c62828;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .88rem; margin-top: 14px;
}
.emergency-note strong { color: #c62828; }
.emergency-note a { color: #c62828; font-weight: 700; }

/* utility */
@media print {
  .floating-cta, .accessibility-btn, .access-panel, .nav-toggle { display: none !important; }
}
