:root {
  --green-950: #073f3a;
  --green-900: #0a514a;
  --green-800: #12675b;
  --green-600: #2d8976;
  --lime: #a4c653;
  --cream: #f6efc7;
  --paper: #fffdf4;
  --white: #ffffff;
  --ink: #16332f;
  --muted: #60736f;
  --line: #d9e2d8;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(7, 63, 58, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, "Noto Sans Hebrew", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; }
a { color: var(--green-800); text-underline-offset: 3px; }
a:hover { color: var(--green-600); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 100; padding: 10px 16px; background: #fff; color: var(--green-950); }
.skip-link:focus { left: 10px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,244,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner, .section-inner, .footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.header-inner { min-height: 96px; display: flex; align-items: center; gap: 28px; }
.brand { margin-right: auto; display: flex; align-items: center; gap: 13px; color: var(--green-950); text-decoration: none; line-height: 1.08; }
.brand img { width: 78px; height: 78px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-name { font-family: Georgia, serif; font-size: 1.17rem; font-weight: 700; }
.brand-location { margin-top: 6px; color: var(--muted); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav a { padding: 9px 10px; border-radius: 999px; color: var(--ink); font-size: .82rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #e9f0df; color: var(--green-950); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 22px; border: 1px solid transparent; border-radius: 999px; font: inherit; font-size: .9rem; font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-900); color: #fff; box-shadow: 0 10px 26px rgba(7,63,58,.2); }
.button-primary:hover { background: var(--green-800); color: #fff; }
.button-cream { background: var(--cream); color: var(--green-950); }
.button-cream:hover { background: #fff6bd; color: var(--green-950); }
.button-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.button-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.header-cta { min-height: 42px; padding: 8px 17px; }

.hero { min-height: 690px; position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; background: linear-gradient(110deg, rgba(7,63,58,.98), rgba(10,81,74,.92)); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(164,198,83,.22), transparent 30%), repeating-linear-gradient(130deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px); }
.hero::after { content: ""; position: absolute; width: 560px; height: 560px; right: -150px; bottom: -290px; border: 1px solid rgba(246,239,199,.22); border-radius: 50%; box-shadow: 0 0 0 75px rgba(246,239,199,.04), 0 0 0 150px rgba(246,239,199,.025); }
.hero .section-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; padding: 92px 0; }
.eyebrow { margin: 0 0 18px; color: var(--lime); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .page-hero h1, h2 { font-family: Georgia, serif; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(3.3rem, 7vw, 6.4rem); line-height: .92; letter-spacing: -.045em; font-weight: 500; }
.hero h1 span { display: block; color: var(--cream); font-style: italic; }
.hero-copy { max-width: 660px; margin: 28px 0 0; color: #dcece5; font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-logo-wrap { position: relative; min-height: 450px; display: grid; place-items: center; }
.hero-logo-wrap::before { content: ""; position: absolute; width: 390px; height: 390px; max-width: 90%; border-radius: 50%; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.hero-logo { position: relative; width: min(330px, 78%); filter: drop-shadow(0 14px 18px rgba(0,0,0,.12)); }
.hero-seal { position: absolute; right: 3%; bottom: 9%; width: 120px; height: 120px; display: grid; place-items: center; text-align: center; border-radius: 50%; border: 1px solid rgba(246,239,199,.5); background: var(--cream); color: var(--green-950); font-size: .68rem; font-weight: 850; letter-spacing: .09em; line-height: 1.25; transform: rotate(7deg); }

.section { padding: 96px 0; }
.section-alt { background: #edf4e8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--green-950); color: #fff; }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 60px; margin-bottom: 44px; }
h2 { margin: 0 0 16px; color: var(--green-950); font-size: clamp(2.2rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.035em; font-weight: 500; }
.section-dark h2 { color: #fff; }
.lede { max-width: 780px; color: var(--muted); font-size: 1.12rem; }
.section-dark .lede { color: #c9ddd7; }
.grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(7,63,58,.06); }
.card-number { color: var(--green-600); font-size: .72rem; font-weight: 850; letter-spacing: .16em; }
.card h3 { margin: 45px 0 12px; color: var(--green-950); font-family: Georgia, serif; font-size: 1.65rem; line-height: 1.1; }
.card p { margin: 0; color: var(--muted); }
.campaign-preview { max-width: 980px; margin: 0 auto; overflow: hidden; border-radius: 24px; background: var(--green-900); box-shadow: var(--shadow); }
.campaign-preview img { display: block; width: 100%; height: auto; aspect-ratio: 2845/650; object-fit: contain; object-position: center; background: var(--green-950); }
.campaign-preview-copy { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 28px 32px; color: #fff; }
.campaign-preview-copy h2 { margin: 0; color: #fff; font-size: clamp(1.8rem,4vw,3.2rem); }
.campaign-preview-copy p { margin: 8px 0 0; color: #d9ebe4; }
.contact-band { background: var(--lime); color: var(--green-950); }
.contact-band .section-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 25px; padding-top: 38px; padding-bottom: 38px; }
.contact-band strong { display: block; margin-bottom: 3px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-band a, .contact-band address { color: var(--green-950); font-style: normal; }

.page-hero { background: linear-gradient(130deg, #eaf3e2, #fff9db); border-bottom: 1px solid var(--line); }
.page-hero .section-inner { padding: 74px 0; }
.page-hero h1 { max-width: 900px; margin: 0; color: var(--green-950); font-size: clamp(2.7rem,6vw,5.6rem); line-height: .96; letter-spacing: -.04em; font-weight: 500; }
.page-hero p { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.text-block { max-width: 900px; }
.text-block h2 { margin-top: 44px; font-size: clamp(1.8rem,4vw,2.8rem); }
.text-block h2:first-child { margin-top: 0; }
.text-block h3 { margin: 30px 0 8px; color: var(--green-950); }
.text-block p, .text-block li { color: #425b56; }
.text-block li { margin: 8px 0; }
.info-list { display: grid; gap: 14px; }
.info-row { padding: 18px 20px; border-left: 4px solid var(--lime); background: #f1f6eb; }
address { font-style: normal; }
.policy-note { padding: 18px 20px; border: 1px solid #c7d99c; border-radius: 12px; background: #f9f9dc; color: var(--ink) !important; font-weight: 700; }
.campaign-hero-art { max-width: 980px; margin: 34px auto 0; overflow: hidden; border-radius: var(--radius); background: var(--green-950); box-shadow: var(--shadow); }
.campaign-hero-art img { display: block; width: 100%; height: auto; aspect-ratio: 2845/650; object-fit: contain; object-position: center; }
.campaign-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.static-form { display: grid; gap: 20px; margin-top: 25px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.form-field { display: grid; gap: 7px; color: var(--green-950); font-weight: 750; }
.form-field.full { grid-column: 1/-1; }
.form-field input, .form-field textarea, .form-field select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #b8cbc4; border-radius: 10px; color: var(--ink); background: #fff; font: inherit; }
.form-field textarea { min-height: 145px; resize: vertical; }
.checkbox-field, .choice-field { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; }
.checkbox-field input, .choice-field input { width: 18px; height: 18px; margin-top: 4px; }
.preference-options { display: grid; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #f3f7ed; }
.preference-options h2, .preference-options p { margin: 0; }
.form-disclaimer { margin: 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .93rem; }
.honeypot { position: absolute; left: -9999px; }

.site-footer { background: #062f2c; color: #cee0da; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 42px; padding: 58px 0 42px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 82px; height: 82px; object-fit: contain; padding: 5px; border-radius: 50%; background: #fff; }
.footer-title { color: #fff; font-family: Georgia, serif; font-size: 1.2rem; }
.site-footer h3 { margin: 0 0 12px; color: var(--cream); font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; }
.site-footer a { color: #fff; }
.site-footer p { margin: 0; }
.footer-links { display: grid; gap: 7px; }
.footer-small { padding: 17px 0 22px; border-top: 1px solid rgba(255,255,255,.13); color: #9fb9b2; font-size: .85rem; }

@media (max-width: 980px) {
  .header-inner { min-height: auto; padding: 14px 0; flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; overflow-x: auto; padding-top: 7px; border-top: 1px solid var(--line); }
  .hero .section-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-logo-wrap { min-height: 390px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 740px) {
  .header-inner, .section-inner, .footer-inner { width: min(var(--max), calc(100% - 28px)); }
  .brand-name { font-size: 1rem; }
  .brand img { width: 62px; height: 62px; }
  .header-cta { display: none; }
  .site-nav a { white-space: nowrap; }
  .hero { min-height: auto; }
  .hero .section-inner { padding: 68px 0; }
  .hero h1 { font-size: clamp(3rem,16vw,5rem); }
  .hero-logo-wrap { min-height: 340px; }
  .hero-logo-wrap::before { width: 300px; height: 300px; }
  .hero-seal { width: 96px; height: 96px; right: 0; }
  .section { padding: 72px 0; }
  .grid-3, .grid-2, .form-grid, .contact-band .section-inner, .footer-inner { grid-template-columns: 1fr; }
  .campaign-preview-copy { align-items: flex-start; flex-direction: column; }
  .form-field.full { grid-column: auto; }
}
@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .brand-location { display: none; }
  .button-row .button, .campaign-actions .button { width: 100%; }
  .hero-logo-wrap { min-height: 300px; }
  .hero-logo-wrap::before { width: 255px; height: 255px; }
  .static-form { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; } }
@media print { .site-header, .button-row, .campaign-actions { display: none; } body, .page-hero, .section, .site-footer { color: #000; background: #fff; } a { color: #000; } }
