:root {
  --el-teal: #12565B;
  --el-teal-dark: #0A3236;
  --el-coral: #E2604A;
  --el-sand: #F4EFE6;
  --el-ink: #1A2B2C;
  --el-grey: #5B6B6C;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--el-sand);
  color: var(--el-ink);
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

.els-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #fff;
  border-bottom: 1px solid #E4DCCB;
}
.els-logo { font-weight: 700; font-size: 20px; color: var(--el-teal); }
.els-logo span { color: var(--el-coral); }
.els-header-link { color: var(--el-teal); text-decoration: none; font-weight: 600; }

.els-wrap { max-width: 900px; margin: 0 auto; padding: 40px 20px 80px; }

.els-hero { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.els-hero h1 { font-size: 32px; color: var(--el-teal); margin-bottom: 14px; }
.els-hero p { color: var(--el-grey); font-size: 17px; }

.els-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.els-product-card {
  background: #fff;
  border: 1px solid #E4DCCB;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.els-product-card h2 { color: var(--el-teal); font-size: 20px; margin: 0 0 10px; }
.els-product-desc { color: var(--el-grey); font-size: 14px; margin-bottom: 14px; }
.els-price { font-size: 24px; font-weight: 700; color: var(--el-ink); margin-bottom: 16px; }
