:root {
  --green-deep: #0c3b25;
  --green: #146c3a;
  --green-2: #1c8a49;
  --green-bright: #2fbf63;
  --lime: #8CE97A;
  --gold: #FDB927;
  --gold-light: #FFD873;
  --whatsapp: #25D366;
  --whatsapp-deep: #1DA851;
  --ivory: #f8faf5;
  --ivory-2: #eef5e9;
  --ink: #142218;
  --ink-soft: #4b5c4f;
  --line: #dde8d7;
  --radius: 14px;
  --radius-sm: 8px;
  --display: 'Rubik', Arial, sans-serif;
  --sans: 'Heebo', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--green-deep);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
strong { color: var(--ink); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--ivory-2); }
.kicker {
  font-family: var(--display);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
}
.rule {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 18px 0 28px;
}
.rule.center { margin-inline: auto; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 245, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--display); color: var(--green-deep); font-size: 1.15rem; font-weight: 800; }
.brand-text span { display: block; font-family: var(--sans); font-size: 0.72rem; color: var(--green-2); letter-spacing: 1px; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 0.95rem; color: var(--green-deep); font-weight: 700; }
.main-nav a:hover { color: var(--gold); }
.header-cta {
  display: flex; align-items: center; gap: 12px;
}
.nav-toggle {
  display: none;
  position: relative;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--green);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--green-deep);
  cursor: pointer;
  padding: 0;
  flex: none;
}
.nav-toggle-open, .nav-toggle-close {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.15s ease;
}
.nav-toggle-close { opacity: 0; visibility: hidden; }
.nav-toggle.open .nav-toggle-open { opacity: 0; visibility: hidden; }
.nav-toggle.open .nav-toggle-close { opacity: 1; visibility: visible; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--display);
}
.btn-gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: var(--green-deep); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-outline { border-color: var(--green-deep); color: var(--green-deep); background: transparent; }
.btn-outline:hover { background: var(--green-deep); color: var(--ivory); }
.btn-ghost-gold { border-color: var(--gold); color: var(--gold-light); background: transparent; }

/* hero */
.hero {
  background: radial-gradient(120% 140% at 20% -10%, var(--green-2) 0%, var(--green) 45%, var(--green-deep) 100%);
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 120px);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero .kicker { color: var(--lime); }
.hero p.lead { color: #e3ede4; font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 46px; flex-wrap: wrap; }
.hero-badge { font-size: 0.85rem; color: #cfe0d1; }
.hero-badge strong { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--gold-light); }
.hero-panel {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(12,59,37,0.45);
  backdrop-filter: blur(2px);
  padding: 34px;
  border-radius: var(--radius);
}
.hero-panel h3 { color: var(--gold-light); }
.hero-panel p { color: #dcecdd; }
.hero-panel ul { margin: 0; padding: 0; list-style: none; }
.hero-panel li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.15); color: #eaf4ea; font-size: 0.95rem; display: flex; gap: 10px; }
.hero-panel li:first-child { border-top: none; }
.hero-panel li svg { flex: none; margin-top: 3px; }

/* white variant, used when the panel sits on a light section instead of the dark hero */
.hero-panel.on-white { background: #fff; border-color: var(--line); }
.hero-panel.on-white h3 { color: var(--green-deep); }
.hero-panel.on-white p { color: var(--ink-soft); }
.hero-panel.on-white li { color: var(--ink); border-top-color: var(--line); }

/* framed photo */
.framed-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(12,59,37,0.16);
  margin-bottom: 22px;
}
.framed-photo.tall { aspect-ratio: 3 / 4; }
.framed-photo.wide { aspect-ratio: 16 / 7; }
.hero-panel .framed-photo { margin-bottom: 0; border-color: rgba(255,255,255,0.3); }

/* cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius);
}
.card .icon { margin-bottom: 18px; }
.card h3 a { color: var(--green-deep); }
.card h3 a:hover { color: var(--gold); }
.card p { margin-bottom: 0.6em; }
.card .more { font-size: 0.9rem; font-weight: 700; color: var(--green-2); }

/* lists with check icon */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { display: flex; gap: 12px; padding: 9px 0; }
.check-list li svg { flex: none; margin-top: 5px; }

/* numbered steps */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; padding: 18px 0 18px 0; border-top: 1px solid var(--line); display: flex; gap: 18px; }
.steps li:first-child { border-top: none; }
.steps li::before {
  content: counter(step);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(160deg, var(--green-bright), var(--green));
  width: 40px; height: 40px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}

/* breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--green-deep); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }

/* blog post body lists */
.section ul:not([class]) { margin: 0 0 1.2em; padding-inline-start: 22px; }
.section ul:not([class]) li { color: var(--ink-soft); margin-bottom: 8px; padding-inline-start: 4px; }

/* faq */
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

/* city chips */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
}
.chip:hover { border-color: var(--gold); color: #b8790a; }
.chip-group h4 { font-family: var(--display); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-2); margin-bottom: 14px; }

/* cta band */
.cta-band {
  background: linear-gradient(160deg, rgba(12,59,37,.93), rgba(20,108,58,.90));
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dcecdd; max-width: 56ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* footer */
.site-footer { background: var(--green-deep); color: #cfe0d1; padding: 4px 0 0; position: relative; }
.site-footer::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--lime), var(--green-bright));
}
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--gold-light); font-family: var(--display); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #cfe0d1; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand p { color: #a9c2ac; font-size: 0.92rem; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-contact-item.wa { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #8fac93; }
.footer-credit { font-size: 0.74rem; color: #6f8f74; padding-bottom: 18px; line-height: 1.6; }
.footer-credit a { color: #8fac93; }

/* whatsapp floating button */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(29,168,81,0.45);
  font-weight: 700;
  font-family: var(--display);
  font-size: 0.92rem;
}
.wa-float:hover { background: var(--whatsapp-deep); }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; right: 0; left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(12,59,37,0.14);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .main-nav a:first-child { border-top: none; }
}

@media (max-width: 640px) {
  .site-header .container { height: auto; flex-wrap: wrap; padding: 12px 16px; gap: 10px 14px; }
  .brand img { height: 44px; }
  .brand-text { display: none; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn { padding: 10px 18px; font-size: 0.85rem; white-space: nowrap; }
}

/* ------------------------------------------------------------------ */
/* accessibility widget (IL law / IS 5568 support)                     */
/* ------------------------------------------------------------------ */
.a11y-widget { position: fixed; bottom: 26px; left: 26px; z-index: 70; }
.a11y-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-deep); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 8px 24px rgba(12,59,37,0.35);
}
.a11y-btn:hover { background: var(--green); }
.a11y-panel {
  display: none;
  position: absolute; bottom: 64px; left: 0;
  width: 260px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(12,59,37,0.18);
  padding: 18px;
}
.a11y-panel.open { display: block; }
.a11y-panel h5 { font-family: var(--display); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--green-2); margin: 0 0 12px; }
.a11y-panel button {
  display: block; width: 100%; text-align: right;
  background: var(--ivory-2); border: 1px solid var(--line);
  color: var(--green-deep); font-family: var(--sans); font-weight: 600; font-size: 0.88rem;
  padding: 10px 12px; border-radius: var(--radius-sm); margin-bottom: 8px; cursor: pointer;
}
.a11y-panel button:hover { border-color: var(--gold); color: #b8790a; }
.a11y-panel a.a11y-statement-link { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--green-deep); font-weight: 700; text-align: center; }

html.a11y-font-1 { font-size: 107%; }
html.a11y-font-2 { font-size: 114%; }
html.a11y-font-3 { font-size: 122%; }

html.a11y-contrast body { background: #000; color: #ffe27a; }
html.a11y-contrast .site-header,
html.a11y-contrast .site-footer,
html.a11y-contrast .hero,
html.a11y-contrast .cta-band,
html.a11y-contrast .card,
html.a11y-contrast .hero-panel,
html.a11y-contrast .a11y-panel,
html.a11y-contrast .section-alt,
html.a11y-contrast .cookie-banner { background: #000 !important; color: #ffe27a !important; border-color: #ffe27a !important; }
html.a11y-contrast h1, html.a11y-contrast h2, html.a11y-contrast h3, html.a11y-contrast h4,
html.a11y-contrast p, html.a11y-contrast a, html.a11y-contrast span, html.a11y-contrast li { color: #ffe27a !important; }
html.a11y-contrast .btn-gold, html.a11y-contrast .btn-outline, html.a11y-contrast .chip { background: #000 !important; border-color: #ffe27a !important; color: #ffe27a !important; }

html.a11y-underline a { text-decoration: underline !important; }

html.a11y-pause *, html.a11y-pause *::before, html.a11y-pause *::after {
  animation: none !important; transition: none !important; scroll-behavior: auto !important;
}

html.a11y-readable body, html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4 {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.01em;
}

/* skip link */
.skip-link {
  position: absolute; right: -999px; top: -999px;
  background: var(--green-deep); color: #fff; padding: 12px 20px; z-index: 100;
  border-radius: var(--radius-sm);
}
.skip-link:focus { right: 16px; top: 16px; }

/* ------------------------------------------------------------------ */
/* cookie consent banner - small unobtrusive corner toast              */
/* ------------------------------------------------------------------ */
.cookie-banner {
  position: fixed; left: 26px; bottom: 92px; z-index: 65;
  max-width: 300px;
  background: #fff; color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(12,59,37,0.18);
  padding: 14px 16px;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { margin: 0 0 10px; font-size: 0.78rem; line-height: 1.5; color: var(--ink-soft); }
.cookie-banner a { color: var(--green-2); font-weight: 700; }
.cookie-banner .btn { white-space: nowrap; padding: 7px 16px; font-size: 0.78rem; }

@media (max-width: 640px) {
  .cookie-banner { left: 14px; right: 14px; max-width: none; bottom: 88px; }
  .a11y-widget { left: 14px; bottom: 14px; }
  .wa-float { right: 14px; bottom: 14px; padding: 12px 18px; }
}
