/* Nediv Lev — Campaign Site */

:root {
  --cream: #f7f1e4;
  --cream-light: #fbf7ec;
  --cream-dark: #ebe3ce;
  --ink: #2a241c;
  --ink-soft: #4a3f32;
  --muted: #7a6f5f;
  --burgundy: #7a2e2b;
  --burgundy-deep: #5c2220;
  --gold: #a07a2e;
  --gold-soft: #c9a961;
  --border: #d9cfb8;
  --white: #ffffff;
  --max: 1200px;
  --max-narrow: 780px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--ink); letter-spacing: 0.02em; text-transform: uppercase; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }

p { margin-bottom: 1.1rem; max-width: 68ch; }

a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--gold-soft);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
a:hover { color: var(--burgundy-deep); }

strong { font-weight: 700; color: var(--ink); }

ul, ol { margin-bottom: 1.1rem; padding-left: 1.25rem; max-width: 68ch; }
li { margin-bottom: 0.4rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo:hover { color: var(--ink); }

.logo__mark {
  color: var(--burgundy);
  font-style: italic;
}

.nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--burgundy);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--cream-light);
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(42, 36, 28, 0.78) 0%, rgba(42, 36, 28, 0.55) 60%, rgba(122, 46, 43, 0.45) 100%),
    url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 48rem;
}

.hero__eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--cream-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero__lede {
  font-size: 1.2rem;
  color: rgba(251, 247, 236, 0.92);
  line-height: 1.55;
  font-weight: 400;
  max-width: 32rem;
}

/* Main */
.main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.main--narrow {
  max-width: var(--max-narrow);
  padding: 4rem 1.5rem;
}

.section {
  margin-bottom: 5rem;
}

.section:last-child {
  margin-bottom: 0;
}

.section__eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Signup section */
.signup {
  background: var(--cream-light);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  margin: -4rem auto 5rem;
  max-width: 800px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(42, 36, 28, 0.15);
}

.signup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.signup h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.signup__sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: none;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.field input {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.15s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--burgundy);
}

.checkbox-group {
  margin: 1rem 0;
}

.checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--burgundy);
  cursor: pointer;
}

.checkbox__text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}

.consent-note {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  background: var(--burgundy);
  color: var(--cream-light);
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  border-radius: 2px;
}

.btn:hover {
  background: var(--burgundy-deep);
  color: var(--cream-light);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
  margin-top: 0.5rem;
}

/* Value props - 3 columns */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 720px) {
  .values { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.value {
  text-align: center;
  padding: 0 0.5rem;
}

.value__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
}

.value h3 {
  text-transform: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.value p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin: 0 auto;
  max-width: 20rem;
}

/* Section with image */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin: 5rem 0;
}

@media (min-width: 840px) {
  .feature { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .feature--reverse .feature__image { order: 2; }
}

.feature__image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 40px -20px rgba(42, 36, 28, 0.3);
}

.feature__image--mosdos {
  background-image: url('images/mosdos.jpg');
}

.feature__image--contact {
  background-image: url('images/contact.jpg');
}

.feature__content h2 { margin-bottom: 1.25rem; }

.feature__content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Stats section */
.stats {
  background: var(--ink);
  color: var(--cream-light);
  padding: 5rem 1.5rem;
  text-align: center;
  margin: 0 calc(-1 * 1.5rem);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(160, 122, 46, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(122, 46, 43, 0.15), transparent 40%);
}

.stats__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.stats__eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.stats__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 1.1rem;
  color: var(--cream-light);
  margin-bottom: 2rem;
}

.stats__text {
  font-size: 1.05rem;
  color: rgba(251, 247, 236, 0.85);
  max-width: 520px;
  margin: 0 auto;
}

/* Contact section */
.contact-section {
  background: var(--cream-light);
  border: 1px solid var(--border);
  padding: 3.5rem 2.5rem;
  margin: 5rem auto 0;
  max-width: 800px;
  text-align: center;
}

.contact-section h2 { margin-bottom: 1rem; }

.contact-section__email {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--burgundy);
  margin: 1.5rem 0 2.5rem;
  display: inline-block;
}

.contact-section__form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Legal pages */
.page-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.page-header__eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.legal h2:first-child { margin-top: 0; }

.meta-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.meta-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.meta-list li:last-child { border-bottom: none; }

.meta-list__label {
  flex: 0 0 7.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 0.15rem;
}

.meta-list__value { flex: 1; }

.rule {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 228, 0.7);
  padding: 4rem 1.5rem 2rem;
  margin-top: 5rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer h4 {
  font-family: 'Lora', serif;
  color: var(--cream-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(247, 241, 228, 0.7);
  font-family: 'Lora', serif;
}

.site-footer a {
  text-decoration: none;
  display: block;
  padding: 0.15rem 0;
  text-decoration-color: transparent;
  transition: color 0.15s ease;
}

.site-footer a:hover { color: var(--gold-soft); }

.site-footer__brand .logo {
  color: var(--cream-light);
  margin-bottom: 1rem;
  display: inline-block;
}

.site-footer__brand .logo__mark {
  color: var(--gold-soft);
}

.site-footer__legal {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(217, 207, 184, 0.15);
  font-size: 0.8rem;
  color: rgba(247, 241, 228, 0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media print {
  .site-header, .site-footer, .skip-link { display: none; }
  body { color: #000; background: #fff; }
}
