:root {
  --green-950: #09251b;
  --green-900: #123528;
  --green-800: #16462f;
  --green-700: #0f6b3f;
  --green-600: #17874f;
  --red-600: #cf2117;
  --amber-500: #b8792f;
  --cream-100: #f7f5ef;
  --cream-200: #eee7da;
  --white: #ffffff;
  --ink: #17251e;
  --muted: #63716a;
  --line: rgba(18, 53, 40, 0.14);
  --shadow: 0 24px 70px rgba(18, 53, 40, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body[dir="rtl"] {
  font-family:
    Tahoma, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 8px 6vw;
  background: rgba(247, 245, 239, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    min-height 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(18, 53, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 92px;
  min-height: 44px;
}

.brand img {
  width: 88px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(23, 135, 79, 0.1);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-link,
.header-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.language-link {
  color: var(--green-700);
}

.header-contact {
  padding: 0 15px;
  color: var(--white);
  background: var(--green-800);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(15, 107, 63, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 720px;
  padding: 104px 6vw 54px;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.88) 52%, rgba(237, 244, 232, 0.82) 100%),
    radial-gradient(circle at 12% 18%, rgba(23, 135, 79, 0.14), transparent 34%),
    var(--cream-100);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(18, 53, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 53, 40, 0.06) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08));
}

.hero-media {
  position: absolute;
  z-index: -1;
  right: 2vw;
  bottom: 20px;
  width: min(58vw, 850px);
  opacity: 0.98;
  filter: drop-shadow(0 34px 38px rgba(18, 53, 40, 0.12));
}

body[dir="rtl"] .hero-media {
  right: auto;
  left: 2vw;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 620px) 1fr;
  align-items: end;
  gap: 36px;
  max-width: 1280px;
  min-height: 560px;
  margin: 0 auto;
}

.hero-copy {
  align-self: center;
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(15, 107, 63, 0.14);
  border-radius: 8px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 18px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.eyebrow::before {
  content: none;
}

.hero .eyebrow {
  min-height: 34px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(18, 53, 40, 0.07);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 68px;
  font-weight: 800;
  letter-spacing: 0;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2 {
  font-family: Tahoma, Inter, Arial, sans-serif;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 18px 38px rgba(15, 107, 63, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-600);
}

.button-secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-proof {
  justify-self: stretch;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 580px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

body[dir="rtl"] .hero-proof {
  margin-left: 0;
  margin-right: auto;
}

.hero-proof div {
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

body[dir="rtl"] .hero-proof div {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

body[dir="rtl"] .hero-proof div:last-child {
  border-left: 0;
}

.hero-proof strong {
  color: var(--green-950);
  font-size: 26px;
  line-height: 32px;
  font-weight: 950;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.section {
  padding: 92px 6vw;
}

.section-grid,
.section-head,
.quality-section,
.contact-section,
.site-footer {
  max-width: 1280px;
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  align-items: start;
}

.section-copy h2,
.section-head h2,
.quality-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: 0;
}

.section-copy p,
.quality-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-grid article,
.product-card,
.contact-form,
.contact-cards a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 36px rgba(18, 53, 40, 0.08);
}

.signal-grid article {
  min-height: 220px;
  padding: 24px;
}

.signal-grid span {
  color: var(--red-600);
  font-size: 13px;
  font-weight: 950;
}

.signal-grid h3 {
  margin: 24px 0 12px;
  color: var(--green-900);
  font-size: 20px;
  line-height: 26px;
}

.signal-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 23px;
}

.products-section {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.product-tools {
  min-width: 300px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--green-950);
  background: var(--cream-100);
  outline: none;
}

.search-box input:focus {
  border-color: rgba(15, 107, 63, 0.42);
  box-shadow: 0 0 0 4px rgba(23, 135, 79, 0.1);
}

.filter-row {
  margin: 0 auto 28px;
  max-width: 1280px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-900);
  background: var(--cream-100);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.filter-chip.is-active {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.product-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(15, 107, 63, 0.28);
  box-shadow: 0 24px 50px rgba(18, 53, 40, 0.13);
}

.product-card figure {
  margin: 0;
  aspect-ratio: 5 / 4;
  background: var(--cream-100);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.product-card small {
  color: var(--red-600);
  font-size: 11px;
  line-height: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 10px;
  color: var(--green-950);
  font-size: 20px;
  line-height: 25px;
}

.product-card p {
  flex: 1;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.product-card button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-900);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.quality-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.quality-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.quality-list div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.quality-list strong {
  color: var(--green-950);
  font-size: 16px;
}

.quality-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 84px;
  padding-bottom: 84px;
  border-top: 1px solid var(--line);
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-cards a {
  min-height: 70px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.contact-cards span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards strong {
  color: var(--green-950);
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--green-950);
  background: var(--cream-100);
  outline: none;
  resize: vertical;
}

.contact-form input {
  height: 48px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 107, 63, 0.42);
  box-shadow: 0 0 0 4px rgba(23, 135, 79, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 86px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 18px 40px rgba(207, 33, 23, 0.22);
  font-size: 14px;
  font-weight: 950;
}

body[dir="rtl"] .floating-contact {
  right: auto;
  left: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  h1 {
    font-size: 54px;
    line-height: 59px;
  }

  .hero-media {
    width: min(64vw, 760px);
    opacity: 0.82;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 64px;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  body[dir="rtl"] .site-nav a {
    justify-content: flex-end;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 660px;
    padding-top: 96px;
  }

  .hero-inner,
  .section-grid,
  .quality-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 520px;
  }

  .hero-media {
    right: -120px;
    bottom: 18px;
    width: 780px;
    opacity: 0.34;
  }

  body[dir="rtl"] .hero-media {
    right: auto;
    left: -120px;
  }

  .hero-proof {
    margin: 0;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .product-tools {
    min-width: 0;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 18px;
  }

  .brand {
    width: 84px;
  }

  .brand img {
    width: 80px;
  }

  .language-link {
    font-size: 13px;
  }

  .hero {
    min-height: 690px;
    padding: 88px 20px 34px;
  }

  h1 {
    font-size: 38px;
    line-height: 43px;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  body[dir="rtl"] .hero-proof div {
    min-height: 82px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child,
  body[dir="rtl"] .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 20px;
  }

  .section-copy h2,
  .section-head h2,
  .quality-copy h2,
  .contact-copy h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-contact {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
